Implement the focus_room_filter action

This is for ctrl+k room filtering and switching
pull/4560/head
Luke Barnard 2017-07-12 13:49:57 +01:00
parent 898725082a
commit 4fe4e10abb
1 changed files with 8 additions and 4 deletions

View File

@ -46,18 +46,22 @@ module.exports = React.createClass({
},
onAction: function(payload) {
// Disabling this as I find it really really annoying, and was used to the
// previous behaviour - see https://github.com/vector-im/riot-web/issues/3348
/*
switch (payload.action) {
/* Disabling this as I find it really really annoying, and was used to the
previous behaviour - see https://github.com/vector-im/riot-web/issues/3348
// Clear up the text field when a room is selected.
case 'view_room':
if (this.refs.search) {
this._clearSearch();
}
break;
*/
case 'focus_room_filter':
if (this.refs.search) {
this.refs.search.focus();
}
break;
}
*/
},
onChange: function() {