2014-11-12 17:04:04 +00:00
|
|
|
angular.module('footer', [])
|
2015-12-21 02:23:17 +00:00
|
|
|
.controller('FooterController', ['$scope', 'Settings', 'Version', function ($scope, Settings, Version) {
|
2015-08-25 05:59:54 +00:00
|
|
|
$scope.template = 'app/components/footer/statusbar.html';
|
2014-11-12 17:04:04 +00:00
|
|
|
|
2015-08-25 05:59:54 +00:00
|
|
|
$scope.uiVersion = Settings.uiVersion;
|
2015-12-21 02:23:17 +00:00
|
|
|
Version.get({}, function (d) {
|
2015-08-25 05:59:54 +00:00
|
|
|
$scope.apiVersion = d.ApiVersion;
|
|
|
|
});
|
|
|
|
}]);
|