Last active
May 3, 2016 04:59
-
-
Save mrrocks/fd3b11bf0b1b2893cacd3bf8b0a9f7bc to your computer and use it in GitHub Desktop.
Framer class default properties
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
class MyLayer extends Layer | |
constructor: (options) -> | |
defaults = | |
width: 400 | |
backgroundColor: "transparent" | |
super _.defaults(options, defaults) | |
layer = new MyLayer | |
backgroundColor: "red" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment