17 lines
281 B
JavaScript
17 lines
281 B
JavaScript
'use strict';
|
|
|
|
angular.module('insight.system').controller('FooterController',
|
|
function ($scope, Global, Status) {
|
|
$scope.global = Global;
|
|
|
|
$scope.getFooter = function() {
|
|
Status.get({
|
|
q: 'getInfo'
|
|
}, function(d) {
|
|
$scope.info = d.info;
|
|
});
|
|
};
|
|
|
|
});
|
|
|