Skip to content

Instantly share code, notes, and snippets.

@meandavejustice
Created December 4, 2013 21:22
Show Gist options
  • Save meandavejustice/7795844 to your computer and use it in GitHub Desktop.
Save meandavejustice/7795844 to your computer and use it in GitHub Desktop.
comparator: function(item) {
return -item.get('number');
},
groupBy: function() {
if (item.isSubItem()) {
return [item.get('parent'), item.get('pk')];
} else {
return [item.get('pk'), 0];
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment