Skip to content

Instantly share code, notes, and snippets.

@mrrocks
Last active May 3, 2016 04:59
Show Gist options
  • Save mrrocks/fd3b11bf0b1b2893cacd3bf8b0a9f7bc to your computer and use it in GitHub Desktop.
Save mrrocks/fd3b11bf0b1b2893cacd3bf8b0a9f7bc to your computer and use it in GitHub Desktop.
Framer class default properties
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