// 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() {} | |
}; | |
}); |