fix linting errors and un-vendor backbone-associations

remove erroneous asset_index listing

remove indirect define

remove pageFactoryArguments index

max length seems excessive for this file

lintfix

un-vendor backbone associations
This commit is contained in:
Ari Rizzitano
2018-03-05 09:55:46 -08:00
parent 970bc6a50d
commit c5b199a1a2
5 changed files with 34 additions and 28 deletions

View File

@@ -1,10 +1,6 @@
(function(define) {
'use strict';
define(
['js/models/course'],
function(ContextCourse) {
window.course = new ContextCourse(window.pageFactoryArguments.ContextCourse[0]);
}
);
}).call(this, define || RequireJS.define);
define(
['js/models/course'],
function(ContextCourse) {
window.course = new ContextCourse(window.pageFactoryArguments.ContextCourse);
}
);