flocore-node/public/js/services/global.js
2014-01-06 17:54:32 -03:00

15 lines
264 B
JavaScript
Executable File

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