├── .editorconfig ├── .eslintrc ├── .ftppass ├── .gitignore ├── .jscsrc ├── CONTRIBUTORS.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── dist ├── bundle.js ├── bundle.js.map └── index.html ├── package.json ├── screenshot.gif ├── src ├── chat-bubble.handlebars ├── day-section.handlebars ├── demoMessages.json ├── index.html ├── main.js └── styles.css └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IjzerenHein/famous-flex-chat/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IjzerenHein/famous-flex-chat/HEAD/.eslintrc -------------------------------------------------------------------------------- /.ftppass: -------------------------------------------------------------------------------- 1 | /Users/hein/.ftppass -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bower_components 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IjzerenHein/famous-flex-chat/HEAD/.jscsrc -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IjzerenHein/famous-flex-chat/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IjzerenHein/famous-flex-chat/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IjzerenHein/famous-flex-chat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IjzerenHein/famous-flex-chat/HEAD/README.md -------------------------------------------------------------------------------- /dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IjzerenHein/famous-flex-chat/HEAD/dist/bundle.js -------------------------------------------------------------------------------- /dist/bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IjzerenHein/famous-flex-chat/HEAD/dist/bundle.js.map -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IjzerenHein/famous-flex-chat/HEAD/dist/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IjzerenHein/famous-flex-chat/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IjzerenHein/famous-flex-chat/HEAD/screenshot.gif -------------------------------------------------------------------------------- /src/chat-bubble.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IjzerenHein/famous-flex-chat/HEAD/src/chat-bubble.handlebars -------------------------------------------------------------------------------- /src/day-section.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IjzerenHein/famous-flex-chat/HEAD/src/day-section.handlebars -------------------------------------------------------------------------------- /src/demoMessages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IjzerenHein/famous-flex-chat/HEAD/src/demoMessages.json -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IjzerenHein/famous-flex-chat/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IjzerenHein/famous-flex-chat/HEAD/src/main.js -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IjzerenHein/famous-flex-chat/HEAD/src/styles.css -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IjzerenHein/famous-flex-chat/HEAD/webpack.config.js --------------------------------------------------------------------------------