wg-backend-django/dell-env/lib/python3.11/site-packages/jupyterlab_plotly/nbextension/extension.js

18 lines
425 B
JavaScript
Raw Normal View History

2023-10-30 03:40:43 -04:00
// 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() {}
};
});