Skip to content

Instantly share code, notes, and snippets.

@JBreit
Created February 7, 2016 13:12
Show Gist options
  • Save JBreit/b401b3d7760c47512ac1 to your computer and use it in GitHub Desktop.
Save JBreit/b401b3d7760c47512ac1 to your computer and use it in GitHub Desktop.
define(function () {
'use strict';
function BaseModel(title) {
this.title = title;
}
BaseModel.prototype = {
getTitle: function () {
return this.title;
}
};
return BaseModel;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment