sirius-explorer
Version:
An open-source front-end for the Insight API.
16 lines (11 loc) • 360 B
JavaScript
;
angular.module('insight.system').controller('FooterController',
function($scope, $route, $templateCache, gettextCatalog, amMoment, Version) {
var _getVersion = function() {
Version.get({},
function(res) {
$scope.version = res.version;
});
};
$scope.version = _getVersion();
});