Inscreased projector scroll distance.

Allows faster scrolling for long slides.
This commit is contained in:
Emanuel Schütze 2017-03-04 16:52:27 +01:00
parent 95c19159f8
commit 65d93d1b66
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ angular.module('OpenSlidesApp.core.projector', ['OpenSlidesApp.core'])
var STEPS = 5;
$scope.scroll = 0;
var setScroll = function (scroll) {
scroll = -80 * scroll;
scroll = -250 * scroll;
if ($scope.scrollTimeout) {
$timeout.cancel($scope.scrollTimeout);
}