Consistently spell homeserver as homeserver

This commit is contained in:
Daniel Wagner-Hall 2015-12-02 19:23:33 +00:00
parent 138c8f88be
commit 2f3a00fe34
39 changed files with 235 additions and 235 deletions

View file

@ -98,7 +98,7 @@ $('.login').live('click', function() {
onLoggedIn(data);
},
error: function(err) {
alert("Unable to login: is the home server running?");
alert("Unable to login: is the homeserver running?");
}
});
});
@ -116,7 +116,7 @@ $('.register').live('click', function() {
onLoggedIn(data);
},
error: function(err) {
var msg = "Is the home server running?";
var msg = "Is the homeserver running?";
var errJson = $.parseJSON(err.responseText);
if (errJson !== null) {
msg = errJson.error;