Skip to content

Instantly share code, notes, and snippets.

@akagomez
Forked from imjoshdean/gist:4574287ec19527a77549
Created November 20, 2014 21:33
Show Gist options
  • Save akagomez/5a82037f8a47aecb648a to your computer and use it in GitHub Desktop.
Save akagomez/5a82037f8a47aecb648a to your computer and use it in GitHub Desktop.
var Example = Map.extend({ }, {
define: {
name: {
value: 'Nailed it'
}
}
});
var NestedMap = Map.extend({ }, {
define: {
isEnabled: {
value: true
},
test: {
Value: Example
},
examples: {
value: {
define: {
one: {
Value: Example
},
two: {
value: {
define: {
deep: {
Value: Example
}
}
}
}
}
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment