17 lines
466 B
JavaScript
17 lines
466 B
JavaScript
/////
|
|
// if you want Backbone, require 'Backbone' (this file). It will give you
|
|
// back a Backbone with all of our instructure specific patches to it.
|
|
|
|
define([
|
|
// Get the unpatched Backbone
|
|
'node_modules-version-of-backbone',
|
|
|
|
// Apply all of our patches
|
|
'compiled/backbone-ext/Backbone.syncWithMultipart',
|
|
'compiled/backbone-ext/Model',
|
|
'compiled/backbone-ext/View',
|
|
'compiled/backbone-ext/Collection'
|
|
], function (Backbone) {
|
|
return Backbone;
|
|
});
|