├── .gitignore ├── README.md ├── app.coffee ├── app.js ├── framer ├── coffee-script.js ├── config.json ├── framer.debug.js ├── framer.debug.js.map ├── framer.generated.js ├── framer.init.js ├── framer.js ├── framer.js.map ├── framer.modules.js ├── images │ ├── background.png │ ├── cursor.png │ ├── cursor@2x.png │ ├── icon-120.png │ ├── icon-152.png │ ├── icon-180.png │ ├── icon-192.png │ ├── icon-76.png │ ├── icon-arrow.png │ ├── icon-arrow@2x.png │ ├── icon-close.png │ ├── icon-close@2x.png │ ├── icon-framer.png │ ├── icon-framer@2x.png │ ├── icon-share.png │ └── icon-share@2x.png ├── mirror.css ├── style.css └── version ├── images └── .gitkeep ├── index.html └── modules └── myModule.coffee /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/README.md -------------------------------------------------------------------------------- /app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/app.coffee -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | // Generated by CoffeeScript 1.9.3 2 | 3 | -------------------------------------------------------------------------------- /framer/coffee-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/coffee-script.js -------------------------------------------------------------------------------- /framer/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/config.json -------------------------------------------------------------------------------- /framer/framer.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/framer.debug.js -------------------------------------------------------------------------------- /framer/framer.debug.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/framer.debug.js.map -------------------------------------------------------------------------------- /framer/framer.generated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/framer.generated.js -------------------------------------------------------------------------------- /framer/framer.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/framer.init.js -------------------------------------------------------------------------------- /framer/framer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/framer.js -------------------------------------------------------------------------------- /framer/framer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/framer.js.map -------------------------------------------------------------------------------- /framer/framer.modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/framer.modules.js -------------------------------------------------------------------------------- /framer/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/images/background.png -------------------------------------------------------------------------------- /framer/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/images/cursor.png -------------------------------------------------------------------------------- /framer/images/cursor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/images/cursor@2x.png -------------------------------------------------------------------------------- /framer/images/icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/images/icon-120.png -------------------------------------------------------------------------------- /framer/images/icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/images/icon-152.png -------------------------------------------------------------------------------- /framer/images/icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/images/icon-180.png -------------------------------------------------------------------------------- /framer/images/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/images/icon-192.png -------------------------------------------------------------------------------- /framer/images/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/images/icon-76.png -------------------------------------------------------------------------------- /framer/images/icon-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/images/icon-arrow.png -------------------------------------------------------------------------------- /framer/images/icon-arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/images/icon-arrow@2x.png -------------------------------------------------------------------------------- /framer/images/icon-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/images/icon-close.png -------------------------------------------------------------------------------- /framer/images/icon-close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/images/icon-close@2x.png -------------------------------------------------------------------------------- /framer/images/icon-framer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/images/icon-framer.png -------------------------------------------------------------------------------- /framer/images/icon-framer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/images/icon-framer@2x.png -------------------------------------------------------------------------------- /framer/images/icon-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/images/icon-share.png -------------------------------------------------------------------------------- /framer/images/icon-share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/images/icon-share@2x.png -------------------------------------------------------------------------------- /framer/mirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/mirror.css -------------------------------------------------------------------------------- /framer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/framer/style.css -------------------------------------------------------------------------------- /framer/version: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/index.html -------------------------------------------------------------------------------- /modules/myModule.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/framer-flex/HEAD/modules/myModule.coffee --------------------------------------------------------------------------------