Skip to content

Instantly share code, notes, and snippets.

@dashk
Created February 11, 2013 01:04
Show Gist options
  • Save dashk/4751804 to your computer and use it in GitHub Desktop.
Save dashk/4751804 to your computer and use it in GitHub Desktop.
define(
[
'common/model/baseModel'
],
function (BaseModel) {
return BaseModel.extend({
defaults: function() {
return {
title: null,
price: 0,
maxQuantityPerOrder: 0,
imageUrl: null,
quantity: 0
};
}
});
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment