fix #74: select all in search field

This commit is contained in:
Antelle 2016-01-11 01:20:42 +03:00
parent c26406940c
commit 3b4153ba8a
2 changed files with 7 additions and 0 deletions

View File

@ -97,6 +97,12 @@ var ListSearchView = Backbone.View.extend({
}
e.target.blur();
break;
case Keys.DOM_VK_A:
if (e.metaKey || e.ctrlKey) {
e.stopPropagation();
return;
}
return;
default:
return;
}

View File

@ -4,6 +4,7 @@ Release notes
Improvements
`+` more reliable binaries management
`+` string resources globalization
`-` #74: select all in search field
##### v0.5.1 (2015-12-15)
Layout bugfixes