We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4a35f2 commit 58106b9Copy full SHA for 58106b9
index.html
@@ -393,10 +393,11 @@
393
document.addEventListener('keydown', function(e) {
394
const isControlOrCommand = e.ctrlKey || e.metaKey;
395
const key = e.key ? e.key.toUpperCase() : '';
396
- if (e.keyCode === 123 || (isControlOrCommand && key === 'U') || (isControlOrCommand && e.shiftKey && (key === 'I' || key === 'J' || key === 'C'))) {
+ if (e.keyCode === 123 || (isControlOrCommand && key === 'U') || (isControlOrCommand && key === 'F') || (isControlOrCommand && e.shiftKey && (key === 'I' || key === 'J' || key === 'C'))) {
397
e.preventDefault();
398
}
399
});
400
</script>
401
</body>
402
</html>
403
+
0 commit comments