1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-11-23 17:42:15 -05:00

Merge pull request #549 from mariroz/fix-tagform-and-shortcat-toggle-savelinkform-conflict

fix of conflict of s shortcat and entering s in input fields
This commit is contained in:
Nicolas Lœuillet 2014-03-12 12:55:48 +01:00
commit f7382cd8c3

View File

@ -60,16 +60,19 @@ $.fn.ready(function() {
========================================================================== */
$(window).keydown(function(e){
switch (e.keyCode) {
// s letter
case 83:
$bagitForm.toggle();
break;
case 27:
$bagitForm.hide();
break;
if ( e.target.tagName.toLowerCase() !== 'input' ) {
switch (e.keyCode) {
// s letter
case 83:
$bagitForm.toggle();
return false;
break;
case 27:
$bagitForm.hide();
break;
}
}
})
});
});