flocore-node/public/js/controllers/footer.js
2014-01-22 18:15:29 -03:00

16 lines
283 B
JavaScript

'use strict';
angular.module('insight.system').controller('FooterController',
function ($scope, get_socket, Version) {
var getVersion = function() {
Version.get({},
function(res) {
$scope.version = res.version;
});
};
$scope.version = getVersion();
});