Commit 9faf9c3d authored by JC Brand's avatar JC Brand

Don't rerender the text input when filtering contacts

parent bc1fa243
......@@ -9,6 +9,7 @@
- sinon 2.1.0
- eslint 3.19.0
- Don't rerender the text input when filtering contacts. [jcbrand]
- Show the MUC server in a bookmarked room's info view (in the bookmarks list). [jcbrand]
- Enable creation of `dist/converse-muc-embedded.js` build file for the
embedded MUC room demo. [jcbrand]
......
......@@ -145,7 +145,7 @@
initialize: function () {
this.model.on('change:filter_type', this.render, this);
this.model.on('change:filter_text', this.render, this);
this.model.on('change:filter_text', this.renderClearButton, this);
},
render: function () {
......@@ -169,6 +169,9 @@
renderClearButton: function () {
var roster_filter = this.el.querySelector('.roster-filter');
if (_.isNull(roster_filter)) {
return;
}
roster_filter.classList[this.tog(roster_filter.value)]('x');
},
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment