Files
web2.0-backend/infoscreen/static/js/infoscreen_controllers.js
T
2016-09-01 00:28:50 +03:00

31 lines
935 B
JavaScript

var app = angular.module('infoApp', ['ngAnimate']);
app.controller('infoscreen_main', function($scope,$timeout){
$scope.index = -1;
var templates = [
{
template: "/static/html/test1.html?img=siklogo",
onload: function(){$scope.imagepath = "/static/img/siklogo.jpg";}
},{
template: "/static/html/abb.html"
},{
template: "/static/html/test1.html?img=kaukkarit",
onload: function(){$scope.imagepath = "/static/img/kaukkarit.jpg";}
},
];
$scope.next = function(){
$scope.index = ($scope.index + 1) % templates.length;
$scope.active = templates[$scope.index];
$timeout($scope.next,5000);
}
$scope.next()
});
app.controller('ABBController', function($scope, $http){
$scope.jobs = [];
$http.get("/infoscreen/abbjobs").then(function(response){
$scope.jobs = response.data;
})
});