13 lines
326 B
JavaScript
13 lines
326 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);
|