Skip to content

Commit

Permalink
released v3.10.4 (#426) (#433) (#432)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Jul 2, 2023
1 parent 830e850 commit 1b813fa
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dist/hotkeys.common.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**!
* hotkeys-js v3.10.3
* hotkeys-js v3.10.4
* A simple micro-library for defining and dispatching keyboard shortcuts. It has no dependencies.
*
* Copyright (c) 2023 kenny wong <wowohoo@qq.com>
Expand Down
2 changes: 1 addition & 1 deletion dist/hotkeys.common.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/hotkeys.esm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**!
* hotkeys-js v3.10.3
* hotkeys-js v3.10.4
* A simple micro-library for defining and dispatching keyboard shortcuts. It has no dependencies.
*
* Copyright (c) 2023 kenny wong <wowohoo@qq.com>
Expand Down
2 changes: 1 addition & 1 deletion dist/hotkeys.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**!
* hotkeys-js v3.10.3
* hotkeys-js v3.10.4
* A simple micro-library for defining and dispatching keyboard shortcuts. It has no dependencies.
*
* Copyright (c) 2023 kenny wong <wowohoo@qq.com>
Expand Down
2 changes: 1 addition & 1 deletion dist/hotkeys.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "hotkeys-js",
"description": "A simple micro-library for defining and dispatching keyboard shortcuts. It has no dependencies.",
"version": "3.10.3",
"version": "3.10.4",
"main": "index.js",
"types": "index.d.ts",
"module": "dist/hotkeys.esm.js",
Expand Down
2 changes: 1 addition & 1 deletion test/run.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ describe('\n Hotkeys.js Test Case222.\n', () => {
expect(e.metaKey).toBeTruthy();
expect(e.ctrlKey).toBeTruthy();
expect(e.shiftKey).toBeTruthy();
expect(hotkeys.getPressedKeyString()).toEqual(['⇧', '', '', 'A']);
expect(hotkeys.getPressedKeyString()).toEqual(['⇧', '', 'A', '']);
});
__triggerKeyboardEvent(document.body, 65, {
metaKey: true,
Expand Down

0 comments on commit 1b813fa

Please sign in to comment.