├── .gitignore ├── LICENSE ├── README.md ├── about-1.svg ├── about-2.svg ├── about-3.svg ├── app.js ├── demo.gif ├── index.html ├── style.css └── worker.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.sublime* 3 | report.* 4 | /_* 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/web-clipboard-promise/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/web-clipboard-promise/HEAD/README.md -------------------------------------------------------------------------------- /about-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/web-clipboard-promise/HEAD/about-1.svg -------------------------------------------------------------------------------- /about-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/web-clipboard-promise/HEAD/about-2.svg -------------------------------------------------------------------------------- /about-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/web-clipboard-promise/HEAD/about-3.svg -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/web-clipboard-promise/HEAD/app.js -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/web-clipboard-promise/HEAD/demo.gif -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/web-clipboard-promise/HEAD/index.html -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/web-clipboard-promise/HEAD/style.css -------------------------------------------------------------------------------- /worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/web-clipboard-promise/HEAD/worker.js --------------------------------------------------------------------------------