summaryrefslogtreecommitdiffstats
path: root/web/react/utils
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/utils
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/utils')
-rw-r--r--web/react/utils/utils.jsx7
1 files changed, 4 insertions, 3 deletions
diff --git a/web/react/utils/utils.jsx b/web/react/utils/utils.jsx
index 98dae9084..cd27afe61 100644
--- a/web/react/utils/utils.jsx
+++ b/web/react/utils/utils.jsx
@@ -839,8 +839,9 @@ module.exports.getDisplayName = function(user) {
//IE10 does not set window.location.origin automatically so this must be called instead when using it
module.exports.getWindowLocationOrigin = function() {
- if (!window.location.origin) {
- window.location.origin = window.location.protocol + "//" + window.location.hostname + (window.location.port ? ':' + window.location.port: '');
+ var windowLocationOrigin = window.location.origin;
+ if (!windowLocationOrigin) {
+ windowLocationOrigin = window.location.protocol + "//" + window.location.hostname + (window.location.port ? ':' + window.location.port: '');
}
- return window.location.origin;
+ return windowLocationOrigin;
};