Skip to content

Instantly share code, notes, and snippets.

@spencerdeinum
Created May 27, 2013 20:59
Show Gist options
  • Save spencerdeinum/5659061 to your computer and use it in GitHub Desktop.
Save spencerdeinum/5659061 to your computer and use it in GitHub Desktop.
Backboning
$(function() {
var drugList = new App.DrugList({});
drugList.url = $('#druglist_url').val();
drugList.fetch({
success: function(collection) {
App.list.show(new DrugListView({ collection: collection }));
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment