Fixed typo in team domain look-up page

Этот коммит содержится в:
Reed Garmsen
2015-06-28 19:25:39 -07:00
родитель bf8511fa47
Коммит 2cd5f3629f
3 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@@ -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;
};