From 57025b9792f77003b05121a2bbbb9def0d542cdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emanuel=20Sch=C3=BCtze?= Date: Thu, 23 Mar 2017 10:51:40 +0100 Subject: [PATCH] Switch projector scroll direction - button 'arrow down': moves the visible part of the projector down (forward = text scrolls from bottom to top) - button 'arrow up': moves the visible part of the projector up (backward = text scrolls from top to bottom) Reverts change from #3094. --- openslides/core/static/js/core/projector.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openslides/core/static/js/core/projector.js b/openslides/core/static/js/core/projector.js index 7c025528f..fd769560d 100644 --- a/openslides/core/static/js/core/projector.js +++ b/openslides/core/static/js/core/projector.js @@ -171,7 +171,7 @@ angular.module('OpenSlidesApp.core.projector', ['OpenSlidesApp.core']) var STEPS = 5; $scope.scroll = 0; var setScroll = function (scroll) { - scroll = 250 * scroll; + scroll = -250 * scroll; if ($scope.scrollTimeout) { $timeout.cancel($scope.scrollTimeout); }