insight-ui-zcash/public/js/controllers/footer.js

16 lines
272 B
JavaScript
Raw Normal View History

2014-01-22 13:13:43 -08:00
'use strict';
angular.module('insight.system').controller('FooterController',
function($scope, Version) {
2014-01-22 13:13:43 -08:00
var _getVersion = function() {
2014-01-22 13:13:43 -08:00
Version.get({},
function(res) {
$scope.version = res.version;
});
};
$scope.version = _getVersion();
2014-01-22 13:13:43 -08:00
});