Co-Authored-By: Jean-Michel Claus <jmc@edx.org> Co-Authored-By: Brian Talbot <btalbot@edx.org> Co-Authored-By: Tim Babych <tim@edx.org> Co-Authored-By: Oleg Marshev <oleg@edx.org> Co-Authored-By: Chris Rodriguez <crodriguez@edx.org>
13 lines
293 B
JavaScript
13 lines
293 B
JavaScript
;(function (define, undefined) {
|
|
'use strict';
|
|
define([
|
|
'backbone', 'js/edxnotes/models/tab'
|
|
], function (Backbone, TabModel) {
|
|
var TabsCollection = Backbone.Collection.extend({
|
|
model: TabModel
|
|
});
|
|
|
|
return TabsCollection;
|
|
});
|
|
}).call(this, define || RequireJS.define);
|