From b56df970b53e5791f677c1d9f34fc153eacc7a22 Mon Sep 17 00:00:00 2001 From: Sika Production Date: Thu, 1 Sep 2016 20:06:46 +0300 Subject: [PATCH] changed infoscreen rotation time from 5 -> 15s --- infoscreen/static/js/infoscreen_controllers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infoscreen/static/js/infoscreen_controllers.js b/infoscreen/static/js/infoscreen_controllers.js index 322a0ec..a0636e0 100644 --- a/infoscreen/static/js/infoscreen_controllers.js +++ b/infoscreen/static/js/infoscreen_controllers.js @@ -18,7 +18,7 @@ app.controller('infoscreen_main', function($scope,$timeout){ $scope.next = function(){ $scope.index = ($scope.index + 1) % templates.length; $scope.active = templates[$scope.index]; - $timeout($scope.next,5000); + $timeout($scope.next,15000); } $scope.next() });