@woosh/meep-engine 2.126.16 → 2.126.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"description": "Pure JavaScript game engine. Fully featured and production ready.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"author": "Alexander Goldring",
|
|
8
|
-
"version": "2.126.
|
|
8
|
+
"version": "2.126.17",
|
|
9
9
|
"main": "build/meep.module.js",
|
|
10
10
|
"module": "build/meep.module.js",
|
|
11
11
|
"exports": {
|
|
@@ -153,7 +153,7 @@ class KeyboardDevice {
|
|
|
153
153
|
*
|
|
154
154
|
* @param {FocusEvent} event
|
|
155
155
|
*/
|
|
156
|
-
#handleGlobalBlurEvent(event) {
|
|
156
|
+
#handleGlobalBlurEvent = (event) => {
|
|
157
157
|
// Element lost focus, we won't be able to capture key-up events
|
|
158
158
|
// release all keys
|
|
159
159
|
for (let keyName in KeyCodes) {
|