changed infoscreen rotation time from 5 -> 15s

This commit is contained in:
Sika Production
2016-09-01 20:06:46 +03:00
parent b37bfd2898
commit b56df970b5
@@ -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()
});