Created
November 25, 2014 19:30
-
-
Save tofumatt/e27ded22d24653d6b51d to your computer and use it in GitHub Desktop.
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
Ember.Controller.extend({ | |
actions: { | |
resort: function(columnName) { | |
// do stuff with your data here | |
var stuff = STUFF(); | |
this.set('whatever', stuff); | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment