├── .gitignore ├── README.md ├── chat.coffee ├── example.framer ├── .gitignore ├── app.coffee ├── framer │ ├── .bookmark │ ├── coffee-script.js │ ├── config.json │ ├── framer.generated.js │ ├── framer.init.js │ ├── framer.js │ ├── framer.js.map │ ├── framer.modules.js │ ├── images │ │ ├── cursor-active.png │ │ ├── cursor-active@2x.png │ │ ├── cursor.png │ │ ├── cursor@2x.png │ │ ├── icon-120.png │ │ ├── icon-152.png │ │ ├── icon-180.png │ │ ├── icon-192.png │ │ └── icon-76.png │ ├── style.css │ └── version ├── images │ ├── .gitkeep │ ├── andrew.jpg │ ├── engly.jpg │ ├── garron.jpg │ ├── isaak.jpg │ └── ningxia.jpg ├── index.html └── modules │ ├── chat.coffee │ └── input.coffee ├── example └── sampleChat.framer │ └── modules │ └── chat.coffee └── img └── chat.gif /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/README.md -------------------------------------------------------------------------------- /chat.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/chat.coffee -------------------------------------------------------------------------------- /example.framer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/.gitignore -------------------------------------------------------------------------------- /example.framer/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/app.coffee -------------------------------------------------------------------------------- /example.framer/framer/.bookmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/framer/.bookmark -------------------------------------------------------------------------------- /example.framer/framer/coffee-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/framer/coffee-script.js -------------------------------------------------------------------------------- /example.framer/framer/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/framer/config.json -------------------------------------------------------------------------------- /example.framer/framer/framer.generated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/framer/framer.generated.js -------------------------------------------------------------------------------- /example.framer/framer/framer.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/framer/framer.init.js -------------------------------------------------------------------------------- /example.framer/framer/framer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/framer/framer.js -------------------------------------------------------------------------------- /example.framer/framer/framer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/framer/framer.js.map -------------------------------------------------------------------------------- /example.framer/framer/framer.modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/framer/framer.modules.js -------------------------------------------------------------------------------- /example.framer/framer/images/cursor-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/framer/images/cursor-active.png -------------------------------------------------------------------------------- /example.framer/framer/images/cursor-active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/framer/images/cursor-active@2x.png -------------------------------------------------------------------------------- /example.framer/framer/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/framer/images/cursor.png -------------------------------------------------------------------------------- /example.framer/framer/images/cursor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/framer/images/cursor@2x.png -------------------------------------------------------------------------------- /example.framer/framer/images/icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/framer/images/icon-120.png -------------------------------------------------------------------------------- /example.framer/framer/images/icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/framer/images/icon-152.png -------------------------------------------------------------------------------- /example.framer/framer/images/icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/framer/images/icon-180.png -------------------------------------------------------------------------------- /example.framer/framer/images/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/framer/images/icon-192.png -------------------------------------------------------------------------------- /example.framer/framer/images/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/framer/images/icon-76.png -------------------------------------------------------------------------------- /example.framer/framer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/framer/style.css -------------------------------------------------------------------------------- /example.framer/framer/version: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /example.framer/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example.framer/images/andrew.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/images/andrew.jpg -------------------------------------------------------------------------------- /example.framer/images/engly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/images/engly.jpg -------------------------------------------------------------------------------- /example.framer/images/garron.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/images/garron.jpg -------------------------------------------------------------------------------- /example.framer/images/isaak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/images/isaak.jpg -------------------------------------------------------------------------------- /example.framer/images/ningxia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/images/ningxia.jpg -------------------------------------------------------------------------------- /example.framer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/index.html -------------------------------------------------------------------------------- /example.framer/modules/chat.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/modules/chat.coffee -------------------------------------------------------------------------------- /example.framer/modules/input.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example.framer/modules/input.coffee -------------------------------------------------------------------------------- /example/sampleChat.framer/modules/chat.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/example/sampleChat.framer/modules/chat.coffee -------------------------------------------------------------------------------- /img/chat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliebchen/framer-chat/HEAD/img/chat.gif --------------------------------------------------------------------------------