Skip to content

Commit

Permalink
⬆ UPDATE: clipboard.js 2.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
choldgraf authored Jul 3, 2021
1 parent 22ec7cc commit 71bb49f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clipboard.js
Submodule clipboard.js updated 59 files
+0 −3 .babelrc
+11 −0 .babelrc.json
+1 −1 .editorconfig
+12 −0 .eslintignore
+24 −0 .eslintrc.json
+57 −0 .github/ISSUE_TEMPLATE/bug_report.md
+13 −0 .github/ISSUE_TEMPLATE/documentation.md
+26 −0 .github/ISSUE_TEMPLATE/proposal.md
+35 −0 .github/PULL_REQUEST_TEMPLATE.md
+0 −15 .github/issue_template.md
+21 −0 .github/stale.yml
+47 −0 .github/workflows/publish.yml
+34 −0 .github/workflows/test.js.yml
+1 −0 .gitignore
+1 −0 .husky/.gitignore
+4 −0 .husky/pre-commit
+1 −0 .nvmrc
+9 −0 .prettierignore
+9 −0 .prettierrc.json
+0 −4 .travis.yml
+21 −0 LICENSE
+2 −6 bower.json
+2 −2 composer.json
+1 −0 contributing.md
+13 −13 demo/constructor-node.html
+12 −12 demo/constructor-nodelist.html
+11 −11 demo/constructor-selector.html
+15 −15 demo/function-target.html
+15 −15 demo/function-text.html
+18 −12 demo/target-div.html
+19 −13 demo/target-input.html
+28 −0 demo/target-programmatic-copy.html
+28 −0 demo/target-programmatic-cut.html
+18 −12 demo/target-textarea.html
+27 −0 demo/text-programmatic-copy.html
+601 −715 dist/clipboard.js
+4 −4 dist/clipboard.min.js
+26 −21 karma.conf.js
+6,509 −6,320 package-lock.json
+6 −6 package.js
+34 −21 package.json
+31 −28 readme.md
+29 −0 src/actions/copy.js
+15 −0 src/actions/cut.js
+53 −0 src/actions/default.js
+0 −204 src/clipboard-action.js
+91 −0 src/clipboard.d.ts
+151 −121 src/clipboard.js
+4 −0 src/clipboard.test-d.ts
+12 −0 src/common/command.js
+26 −0 src/common/create-fake-element.js
+55 −0 test/actions/copy.js
+32 −0 test/actions/cut.js
+80 −0 test/actions/default.js
+0 −243 test/clipboard-action.js
+152 −93 test/clipboard.js
+49 −0 test/common/command.js
+13 −0 test/common/create-fake-element.js
+33 −32 webpack.config.js

0 comments on commit 71bb49f

Please sign in to comment.