├── .editorconfig ├── .gitignore ├── Gruntfile.js ├── README.md ├── bower.json ├── demo ├── demo.css ├── fb.jpg ├── highlight.github.css ├── highlight.pack.js └── support.js ├── dist ├── voice-player.html └── voice-recognition.html ├── index.html ├── package.json └── src ├── voice-player.html └── voice-recognition.html /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenorocha/voice-elements/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenorocha/voice-elements/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenorocha/voice-elements/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenorocha/voice-elements/HEAD/bower.json -------------------------------------------------------------------------------- /demo/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenorocha/voice-elements/HEAD/demo/demo.css -------------------------------------------------------------------------------- /demo/fb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenorocha/voice-elements/HEAD/demo/fb.jpg -------------------------------------------------------------------------------- /demo/highlight.github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenorocha/voice-elements/HEAD/demo/highlight.github.css -------------------------------------------------------------------------------- /demo/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenorocha/voice-elements/HEAD/demo/highlight.pack.js -------------------------------------------------------------------------------- /demo/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenorocha/voice-elements/HEAD/demo/support.js -------------------------------------------------------------------------------- /dist/voice-player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenorocha/voice-elements/HEAD/dist/voice-player.html -------------------------------------------------------------------------------- /dist/voice-recognition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenorocha/voice-elements/HEAD/dist/voice-recognition.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenorocha/voice-elements/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenorocha/voice-elements/HEAD/package.json -------------------------------------------------------------------------------- /src/voice-player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenorocha/voice-elements/HEAD/src/voice-player.html -------------------------------------------------------------------------------- /src/voice-recognition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenorocha/voice-elements/HEAD/src/voice-recognition.html --------------------------------------------------------------------------------