Skip to content

Instantly share code, notes, and snippets.

@code-for-coffee
Created August 25, 2015 17:22
Show Gist options
  • Save code-for-coffee/ae902cc115aae6f66978 to your computer and use it in GitHub Desktop.
Save code-for-coffee/ae902cc115aae6f66978 to your computer and use it in GitHub Desktop.
Backbone.js
var sms = sms || {};
var active = active || {};
sms.model = Backbone.Model.extend({
initialize: function() {
}
});
sms.collection = Backbone.Collection.extend({
initialize: function() {
}
});
sms.modelView = Backbone.View.extend({
initialize: function() {
},
render: function() {
}
});
sms.collectionView = Backbone.View.extend({
initialize: function() {
},
render: function() {
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment