freeCodeCamp/public/js/services/global.js

9 lines
205 B
JavaScript
Raw Normal View History

2013-11-13 17:32:22 +00:00
angular.module('mean.system').factory("Global", [function() {
var _this = this;
_this._data = {
user: window.user,
authenticated: !! window.user
};
return _this._data;
}]);