Skip to content

Commit

Permalink
Build v3.6.13 #100
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Jul 30, 2019
1 parent be2c9b7 commit 828bc90
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions dist/hotkeys.common.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* hotkeys-js v3.6.12
* hotkeys-js v3.6.13
* A simple micro-library for defining and dispatching keyboard shortcuts. It has no dependencies.
*
* Copyright (c) 2019 kenny wong <[email protected]>
Expand Down Expand Up @@ -397,7 +397,7 @@ function hotkeys(key, option, method) {

if (option.keyup) keyup = option.keyup; // eslint-disable-line

if (option.keydown) keydown = option.keydown; // eslint-disable-line
if (option.keydown !== undefined) keydown = option.keydown; // eslint-disable-line
}

if (typeof option === 'string') scope = option; // 对于每个快捷键进行处理
Expand Down
4 changes: 2 additions & 2 deletions dist/hotkeys.common.min.js

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

4 changes: 2 additions & 2 deletions dist/hotkeys.esm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* hotkeys-js v3.6.12
* hotkeys-js v3.6.13
* A simple micro-library for defining and dispatching keyboard shortcuts. It has no dependencies.
*
* Copyright (c) 2019 kenny wong <[email protected]>
Expand Down Expand Up @@ -395,7 +395,7 @@ function hotkeys(key, option, method) {

if (option.keyup) keyup = option.keyup; // eslint-disable-line

if (option.keydown) keydown = option.keydown; // eslint-disable-line
if (option.keydown !== undefined) keydown = option.keydown; // eslint-disable-line
}

if (typeof option === 'string') scope = option; // 对于每个快捷键进行处理
Expand Down
4 changes: 2 additions & 2 deletions dist/hotkeys.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* hotkeys-js v3.6.12
* hotkeys-js v3.6.13
* A simple micro-library for defining and dispatching keyboard shortcuts. It has no dependencies.
*
* Copyright (c) 2019 kenny wong <[email protected]>
Expand Down Expand Up @@ -401,7 +401,7 @@

if (option.keyup) keyup = option.keyup; // eslint-disable-line

if (option.keydown) keydown = option.keydown; // eslint-disable-line
if (option.keydown !== undefined) keydown = option.keydown; // eslint-disable-line
}

if (typeof option === 'string') scope = option; // 对于每个快捷键进行处理
Expand Down
Loading

0 comments on commit 828bc90

Please sign in to comment.