Skip to content

Instantly share code, notes, and snippets.

View tkambler's full-sized avatar
:octocat:

Tim Ambler tkambler

:octocat:
View GitHub Profile
@tkambler
tkambler / example.js
Created January 20, 2014 16:32
Patterns for implementing client-side JS models and collections with Knockout and Falcon
var User = BaseModel.extend({
'url': 'user.json',
'defaults': {
'first_name': null,
'last_name': null,
'email': null
}
});
var Users = BaseCollection.extend({