client/js/shout.js: prevent default action, don't overshadow native keyboard shortcut

Closes #453.
This commit is contained in:
William Boman 2015-09-27 06:12:07 +02:00
parent 956807b325
commit c66a3917cb

View File

@ -723,11 +723,11 @@ $(function() {
Mousetrap.bind([
"command+k",
"ctrl+l",
"ctrl+shift+l"
], function (e) {
if(e.target === input[0]) {
clear();
e.preventDefault();
}
});