├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── README.md ├── demo.html ├── package.json ├── screenshot.png ├── tagger.css ├── tagger.d.ts └── tagger.js /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcubic/tagger/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcubic/tagger/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcubic/tagger/HEAD/README.md -------------------------------------------------------------------------------- /demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcubic/tagger/HEAD/demo.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcubic/tagger/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcubic/tagger/HEAD/screenshot.png -------------------------------------------------------------------------------- /tagger.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcubic/tagger/HEAD/tagger.css -------------------------------------------------------------------------------- /tagger.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcubic/tagger/HEAD/tagger.d.ts -------------------------------------------------------------------------------- /tagger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcubic/tagger/HEAD/tagger.js --------------------------------------------------------------------------------