Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. define(function () {
  2. 'use strict';
  3.  
  4. function BaseModel(title) {
  5.  
  6. this.title = title;
  7.  
  8. }
  9.  
  10. BaseModel.prototype = {
  11.  
  12. getTitle: function () {
  13.  
  14. return this.title;
  15.  
  16. }
  17.  
  18. };
  19.  
  20. return BaseModel;
  21.  
  22. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement