fix: 修复组合按键的BUG
This commit is contained in:
		@@ -64,7 +64,7 @@
 | 
			
		||||
    }
 | 
			
		||||
    document.onkeydown = function() {
 | 
			
		||||
        var e = window.event;
 | 
			
		||||
        if (!e.altKey) { return; }
 | 
			
		||||
        if (!e.altKey || e.ctrlKey || e.shiftKey) { return; }
 | 
			
		||||
        switch (e.keyCode) {
 | 
			
		||||
            case 87:
 | 
			
		||||
                // Alt + W 关闭Tab标签页
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user