Last active
August 29, 2015 14:11
-
-
Save cheshirrrcat/526a6413e3493c977b35 to your computer and use it in GitHub Desktop.
Ember.js features
This file contains 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
filtered: function(){ | |
return this.get('content').filter(function(item){ | |
if(item.get('date') <= '02.05.2014'){ | |
return item; | |
} | |
}); | |
}.property() |
This file contains 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
http://stackoverflow.com/questions/23646576/updated-firstobject-is-undefined-emberjs-array |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment