wg-backend-django/dell-env/lib/python3.11/site-packages/jupyterlab_plotly/nbextension/extension.js
2023-10-30 14:40:43 +07:00

18 lines
425 B
JavaScript

// Entry point for the notebook bundle containing custom model definitions.
//
define(function() {
"use strict";
window['requirejs'].config({
map: {
'*': {
'jupyterlab-plotly': 'nbextensions/jupyterlab-plotly/index',
},
}
});
// Export the required load_ipython_extension function
return {
load_ipython_extension : function() {}
};
});