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){ $(window).keydown(function(e){
switch (e.keyCode) { if ( e.target.tagName.toLowerCase() !== 'input' ) {
// s letter switch (e.keyCode) {
case 83: // s letter
$bagitForm.toggle(); case 83:
break; $bagitForm.toggle();
case 27: return false;
$bagitForm.hide(); break;
break; case 27:
$bagitForm.hide();
break;
}
} }
}) })
}); });