├── .gitignore ├── LICENSE ├── README.md ├── bower.json ├── demo └── index.html ├── emoji-selector.html └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/emoji-selector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/emoji-selector/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/emoji-selector/HEAD/bower.json -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/emoji-selector/HEAD/demo/index.html -------------------------------------------------------------------------------- /emoji-selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/emoji-selector/HEAD/emoji-selector.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwaldorf/emoji-selector/HEAD/index.html --------------------------------------------------------------------------------