insight-ui-zcash/public/js/services/global.js

15 lines
264 B
JavaScript
Executable File

'use strict';
//Global service for global variables
angular.module('insight.system').factory('Global', [
function() {
var _this = this;
_this._data = {
user: window.user,
authenticated: !! window.user
};
return _this._data;
}
]);