Make search keyboard shortcut compatible with Firefox
This commit is contained in:
parent
fd5731cccc
commit
c8a6f45b93
@ -19,5 +19,6 @@
|
||||
<li><?php echo t('Toggle RTL mode') ?> = <strong>z</strong></li>
|
||||
<li><?php echo t('Show help') ?> = <strong>?</strong></li>
|
||||
<li><?php echo t('Close help') ?> = <strong>q</strong></li>
|
||||
<li><?php echo t('Search') ?> = <strong>/</strong></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
@ -825,7 +825,7 @@ iframe {
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 300px;
|
||||
width: 350px;
|
||||
overflow: auto;
|
||||
background: #f0f0f0;
|
||||
box-shadow: 2px 0 5px 0 #ccc;
|
||||
|
2
assets/css/app.min.css
vendored
2
assets/css/app.min.css
vendored
File diff suppressed because one or more lines are too long
2
assets/js/app.min.js
vendored
2
assets/js/app.min.js
vendored
File diff suppressed because one or more lines are too long
@ -251,20 +251,10 @@ Miniflux.Event = (function() {
|
||||
case 39:
|
||||
Miniflux.Nav.SelectNextItem();
|
||||
break;
|
||||
}
|
||||
};
|
||||
|
||||
document.onkeyup = function(e) {
|
||||
|
||||
if (isEventIgnored(e)) {
|
||||
return;
|
||||
}
|
||||
|
||||
Miniflux.Event.lastEventType = "keyboard";
|
||||
|
||||
switch (e.key || e.which) {
|
||||
case '/':
|
||||
case 47:
|
||||
case 191:
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
Miniflux.Nav.ShowSearch();
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user