├── .babelrc ├── .gitignore ├── LICENSE ├── README.md ├── css └── style.css ├── gulpfile.js ├── index.html ├── js ├── app.js └── app.min.js └── package.json /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dermike/conversational-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dermike/conversational-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dermike/conversational-ui/HEAD/README.md -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dermike/conversational-ui/HEAD/css/style.css -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dermike/conversational-ui/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dermike/conversational-ui/HEAD/index.html -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dermike/conversational-ui/HEAD/js/app.js -------------------------------------------------------------------------------- /js/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dermike/conversational-ui/HEAD/js/app.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dermike/conversational-ui/HEAD/package.json --------------------------------------------------------------------------------