summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorReed Garmsen <rgarmsen2295@gmail.com>2015-06-28 19:38:19 -0700
committerReed Garmsen <rgarmsen2295@gmail.com>2015-06-28 19:38:19 -0700
commite621950364c93365fad4dbbbb6e94360d2fce809 (patch)
tree757d7c539dda297efe27d30fc3e2143e0e38c56f /web
parent2cd5f3629ff2410127a8fdc5df92fb16f52fa457 (diff)
downloadchat-e621950364c93365fad4dbbbb6e94360d2fce809.tar.gz
chat-e621950364c93365fad4dbbbb6e94360d2fce809.tar.bz2
chat-e621950364c93365fad4dbbbb6e94360d2fce809.zip
Removed test code
Diffstat (limited to 'web')
-rw-r--r--web/react/utils/utils.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/react/utils/utils.jsx b/web/react/utils/utils.jsx
index 128d9d1e7..75c583c8f 100644
--- a/web/react/utils/utils.jsx
+++ b/web/react/utils/utils.jsx
@@ -25,7 +25,7 @@ module.exports.cleanUpUrlable = function(input) {
module.exports.isTestDomain = function() {
- /*if ((/^localhost/).test(window.location.hostname))
+ if ((/^localhost/).test(window.location.hostname))
return true;
if ((/^dockerhost/).test(window.location.hostname))
@@ -44,7 +44,7 @@ module.exports.isTestDomain = function() {
return true;
if ((/^176./).test(window.location.hostname))
- return true;*/
+ return true;
return false;
};