summaryrefslogtreecommitdiffstats
path: root/web/react/stores/team_store.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-10-05 09:58:42 -0400
committerChristopher Speller <crspeller@gmail.com>2015-10-05 11:05:06 -0400
commit33b957ed1a8a44d4bed0f9c674d5602bad5028ea (patch)
treeeecee1a84d2da761345c244fa8078488a52eba94 /web/react/stores/team_store.jsx
parent515d709c2ef13b6ed7a3d04a7ad2fb2acbb0ec5d (diff)
downloadchat-33b957ed1a8a44d4bed0f9c674d5602bad5028ea.tar.gz
chat-33b957ed1a8a44d4bed0f9c674d5602bad5028ea.tar.bz2
chat-33b957ed1a8a44d4bed0f9c674d5602bad5028ea.zip
Disabling complexity warning. Allowing non-nested ternary. Upgrading ESList. Adding new ESLint rules. Fixing new ESLint errors.
Diffstat (limited to 'web/react/stores/team_store.jsx')
-rw-r--r--web/react/stores/team_store.jsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/web/react/stores/team_store.jsx b/web/react/stores/team_store.jsx
index 1f33fe03b..fd9117747 100644
--- a/web/react/stores/team_store.jsx
+++ b/web/react/stores/team_store.jsx
@@ -10,12 +10,12 @@ var BrowserStore = require('../stores/browser_store.jsx');
var CHANGE_EVENT = 'change';
-var utils;
+var Utils;
function getWindowLocationOrigin() {
- if (!utils) {
- utils = require('../utils/utils.jsx');
+ if (!Utils) {
+ Utils = require('../utils/utils.jsx'); //eslint-disable-line global-require
}
- return utils.getWindowLocationOrigin();
+ return Utils.getWindowLocationOrigin();
}
class TeamStoreClass extends EventEmitter {