Last active
April 23, 2016 15:52
-
-
Save antonkartashov/fdf7bc91f125133200a5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if Utils.isDesktop() is true | |
| HTMLPreviewBackground = new Layer | |
| backgroundColor: "#2d383e" | |
| HTMLPreview = Screen | |
| Screen = new Layer | |
| width: 750 | |
| height: 1334 | |
| clip: true | |
| backgroundColor: "black" | |
| (window.onresize = -> | |
| Screen.center() | |
| HTMLPreviewBackground.size = HTMLPreview.size | |
| Screen.scale = HTMLPreview.height / Screen.height | |
| Framer.Defaults.Layer.parent = Screen | |
| )() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment