Obey Cmd/Ctrl-W in Scaffold, Style Editor, and Run JavaScript windows

This commit is contained in:
Dan Stillman 2020-05-17 04:08:43 -04:00
parent c9e90417ee
commit a086507167
3 changed files with 10 additions and 0 deletions

View file

@ -258,4 +258,8 @@
</hbox>
</vbox>
<keyset>
<key id="key_close" key="W" modifiers="accel" oncommand="window.close()"/>
</keyset>
</window>

View file

@ -68,6 +68,9 @@ window.addEventListener('keypress', function (event) {
run();
event.stopPropagation();
}
else if (event.key == 'w') {
window.close();
}
});
var shortcut = Zotero.isMac ? 'Cmd-R' : 'Ctrl+R';

View file

@ -73,4 +73,7 @@
<iframe id="zotero-csl-preview-box" flex="1" style="padding: 0 1em;background:white" overflow="auto" type="content"/>
</vbox>
<keyset>
<key id="key_close" key="W" modifiers="accel" oncommand="window.close()"/>
</keyset>
</window>