Skip to content

Instantly share code, notes, and snippets.

@bittersweetryan
Created July 27, 2012 15:57
Show Gist options
  • Save bittersweetryan/3188839 to your computer and use it in GitHub Desktop.
Save bittersweetryan/3188839 to your computer and use it in GitHub Desktop.
app.NewView = Backbone.View.extend({
initialize : function(){
this.addContacts();
},
addContacts : function(){
_.each(app.contacts.models, function(val, key){
//add them to a drop down
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment