├── .gitignore ├── 404.html ├── README.md ├── clipboard.js-master ├── .banner ├── .editorconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── bower.json ├── contributing.md ├── demo │ ├── constructor-node.html │ ├── constructor-nodelist.html │ ├── constructor-selector.html │ ├── function-target.html │ ├── function-text.html │ ├── target-div.html │ ├── target-input.html │ └── target-textarea.html ├── package.json └── readme.md ├── git.png ├── index.php ├── link100.svg ├── paper42.svg └── terms.php /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.xml 3 | 4 | analyticstracking.php 5 | 6 | *.js 7 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 |