Fixed typo in team domain look-up page

This commit is contained in:
Reed Garmsen
2015-06-28 19:25:39 -07:00
parent bf8511fa47
commit 2cd5f3629f
3 changed files with 6 additions and 6 deletions

View File

@@ -8,9 +8,9 @@
"FileLocation": ""
},
"ServiceSettings": {
"SiteName": "Mattermost",
"Domain": "xxxxxxmustbefilledin.com",
"Mode" : "dev",
"SiteName": "Battlehouse",
"Domain": "battlehouse.com",
"Mode" : "prod",
"AllowTesting" : false,
"UseSSL": false,
"Port": "8065",

View File

@@ -37,7 +37,7 @@ var FindTeamDomain = React.createClass({
window.location.href = window.location.protocol + "//" + domain + "." + utils.getDomainWithOutSub();
}
else {
this.state.server_error = "We couldn't find your " + strings.TeamPlural + ".";
this.state.server_error = "We couldn't find your " + strings.Team + ".";
this.setState(this.state);
}
}.bind(this),

View File

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