summary refs log tree commit diff
path: root/lib/key.js
blob: 7f7971a325e50863ae01a186deea01f51e6f4084 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
window.onkeydown = function (e) {
	if (!e) e = window.event;
	shiftHeld = e.shiftKey;
};

window.onkeyup = function (e) {
	if (!e) e = window.event;
	shiftHeld = e.shiftKey;
};

window.onmousemove = function (e) {
	if (!e) e = window.event;
	shiftHeld = e.shiftKey;
};

export let shiftHeld;