Merge branch 'stable'

This commit is contained in:
azivner
2017-11-20 23:37:27 -05:00
7 changed files with 16 additions and 10 deletions

View File

@@ -24,14 +24,20 @@ $(document).bind('keydown', 'alt+t', () => {
});
$(document).bind('keydown', 'f5', () => {
location.reload();
window.location.reload(true);
return false;
});
$(document).bind('keydown', 'ctrl+r', () => {
window.location.reload(true);
return false;
});
$(document).bind('keydown', 'ctrl+shift+i', () => {
if (isElectron()) {
require('remote').getCurrentWindow().toggleDevTools();
require('electron').remote.getCurrentWindow().toggleDevTools();
return false;
}