fix blinking when toggling advanced

pull/148/head
Matthew Hodgson 2015-09-01 01:35:47 +03:00
parent ab068cc372
commit 8214ee8fad
1 changed files with 13 additions and 2 deletions

View File

@ -80,8 +80,19 @@ module.exports = React.createClass({
},
onHsUrlChanged: function() {
this.customHsUrl = this.refs.serverConfig.getHsUrl().trim();
this.customIsUrl = this.refs.serverConfig.getIsUrl().trim();
var newHsUrl = this.refs.serverConfig.getHsUrl().trim();
var newIsUrl = this.refs.serverConfig.getIsUrl().trim();
if (newHsUrl == this.customHsUrl &&
newIsUrl == this.customIsUrl)
{
return;
}
else {
this.customHsUrl = newHsUrl;
this.customIsUrl = newIsUrl;
}
MatrixClientPeg.replaceUsingUrls(
this.getHsUrl(),
this.getIsUrl()