The studio tabs page had a race condition when loading many static tabs. The result was that those tabs couldn't be deleted. By requiring the `xmodule` module, we force the EditTabsFactory to load XBlockToXModuleShim before it's needed.
27 lines
760 B
JavaScript
27 lines
760 B
JavaScript
import * as TabsModel from 'js/models/explicit_url';
|
|
import * as TabsEditView from 'js/views/tabs';
|
|
import * as xmoduleLoader from 'xmodule';
|
|
import './base';
|
|
import 'cms/js/main';
|
|
import 'xblock/cms.runtime.v1';
|
|
import 'xmodule/js/src/xmodule'; // Force the XBlockToXModuleShim to load for Static Tabs
|
|
|
|
'use strict';
|
|
export default function EditTabsFactory(courseLocation, explicitUrl) {
|
|
xmoduleLoader.done(function() {
|
|
var model = new TabsModel({
|
|
id: courseLocation,
|
|
explicit_url: explicitUrl
|
|
}),
|
|
editView;
|
|
|
|
editView = new TabsEditView({
|
|
el: $('.tab-list'),
|
|
model: model,
|
|
mast: $('.wrapper-mast')
|
|
});
|
|
});
|
|
};
|
|
|
|
export {EditTabsFactory}
|