summaryrefslogtreecommitdiffstats
path: root/web/react/stores/team_store.jsx
diff options
context:
space:
mode:
authorReed Garmsen <rgarmsen2295@gmail.com>2015-07-27 13:21:50 -0700
committerReed Garmsen <rgarmsen2295@gmail.com>2015-07-27 13:32:14 -0700
commit91fa6c8da1cbf6647791fa43699eb310f990e7e9 (patch)
tree99247161a74642d1e91d4fc9fbff6a1b57bcc5c4 /web/react/stores/team_store.jsx
parent52bf726ddfaa0d5010ce7a80fe1f03a485df9279 (diff)
downloadchat-91fa6c8da1cbf6647791fa43699eb310f990e7e9.tar.gz
chat-91fa6c8da1cbf6647791fa43699eb310f990e7e9.tar.bz2
chat-91fa6c8da1cbf6647791fa43699eb310f990e7e9.zip
Removed usage of window.location.origin throughout the codebase
Diffstat (limited to 'web/react/stores/team_store.jsx')
-rw-r--r--web/react/stores/team_store.jsx8
1 files changed, 7 insertions, 1 deletions
diff --git a/web/react/stores/team_store.jsx b/web/react/stores/team_store.jsx
index 3f12725f8..e6380d19e 100644
--- a/web/react/stores/team_store.jsx
+++ b/web/react/stores/team_store.jsx
@@ -11,6 +11,12 @@ var BrowserStore = require('../stores/browser_store.jsx');
var CHANGE_EVENT = 'change';
+var utils;
+function getWindowLocationOrigin() {
+ if (!utils) utils = require('../utils/utils.jsx');
+ return utils.getWindowLocationOrigin();
+}
+
var TeamStore = assign({}, EventEmitter.prototype, {
emitChange: function() {
this.emit(CHANGE_EVENT);
@@ -58,7 +64,7 @@ var TeamStore = assign({}, EventEmitter.prototype, {
return null;
},
getCurrentTeamUrl: function() {
- return window.location.origin + "/" + this.getCurrent().name;
+ return getWindowLocationOrigin() + "/" + this.getCurrent().name;
},
storeTeam: function(team) {
var teams = this._getTeams();