You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
414 B
JavaScript
23 lines
414 B
JavaScript
define(['underscore', 'backbone'], function LayoutModelDefine(_, Backbone) {
|
|
'use strict';
|
|
|
|
var Model = Backbone.Model;
|
|
|
|
function LayoutModel() {
|
|
Model.apply(this, arguments);
|
|
}
|
|
|
|
LayoutModel.prototype = new Model();
|
|
|
|
_.extend(LayoutModel.prototype, {
|
|
url: '/data/vendor.json',
|
|
defaults: function defaults() {
|
|
return {
|
|
title: ''
|
|
};
|
|
}
|
|
});
|
|
|
|
return LayoutModel;
|
|
});
|