├── README.md ├── iOSNotification-module-example.framer ├── .gitignore ├── app.coffee ├── framer │ ├── backups │ │ ├── backup-1427482355.coffee │ │ ├── backup-1427574600.coffee │ │ └── backup-1427654112.coffee │ ├── coffee-script.js │ ├── config.json │ ├── 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 │ ├── framer-icon.png │ ├── homescreen.png │ ├── icon.png │ └── pressmebutton.png ├── index.html └── modules │ └── iOSNotification.coffee ├── iOSNotification.coffee └── screenshot-animation.gif /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/README.md -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/.gitignore -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/app.coffee -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/backups/backup-1427482355.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/backups/backup-1427482355.coffee -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/backups/backup-1427574600.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/backups/backup-1427574600.coffee -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/backups/backup-1427654112.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/backups/backup-1427654112.coffee -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/coffee-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/coffee-script.js -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/config.json -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/framer.generated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/framer.generated.js -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/framer.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/framer.init.js -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/framer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/framer.js -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/framer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/framer.js.map -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/framer.modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/framer.modules.js -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/images/background.png -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/images/cursor.png -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/images/cursor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/images/cursor@2x.png -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/images/icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/images/icon-120.png -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/images/icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/images/icon-152.png -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/images/icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/images/icon-180.png -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/images/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/images/icon-192.png -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/images/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/images/icon-76.png -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/images/icon-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/images/icon-arrow.png -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/images/icon-arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/images/icon-arrow@2x.png -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/images/icon-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/images/icon-close.png -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/images/icon-close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/images/icon-close@2x.png -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/images/icon-framer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/images/icon-framer.png -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/images/icon-framer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/images/icon-framer@2x.png -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/images/icon-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/images/icon-share.png -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/images/icon-share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/images/icon-share@2x.png -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/mirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/mirror.css -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/framer/style.css -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/framer/version: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/images/framer-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/images/framer-icon.png -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/images/homescreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/images/homescreen.png -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/images/icon.png -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/images/pressmebutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/images/pressmebutton.png -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/index.html -------------------------------------------------------------------------------- /iOSNotification-module-example.framer/modules/iOSNotification.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification-module-example.framer/modules/iOSNotification.coffee -------------------------------------------------------------------------------- /iOSNotification.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/iOSNotification.coffee -------------------------------------------------------------------------------- /screenshot-animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leinerud/framer.iosnotification/HEAD/screenshot-animation.gif --------------------------------------------------------------------------------