Skip to content

Instantly share code, notes, and snippets.

@ccapndave
Created December 4, 2011 21:12
Show Gist options
  • Save ccapndave/1431291 to your computer and use it in GitHub Desktop.
Save ccapndave/1431291 to your computer and use it in GitHub Desktop.
Coffeescript
MyObject = SC.Object.extend({
fullName: function() {
return "How to add .property() in Coffeescript?"
}.property()
});
@Phlogistique
Copy link

MyObject = SC.Object.extend
    fullName: (-> "How to add .property() in Coffeescript?").property()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment