@dd-decaf/escher
Version:
Escher: A Web Application for Building, Sharing, and Embedding Data-Rich Visualizations of Metabolic Pathways
25 lines (22 loc) • 767 B
JavaScript
// This file contains the javascript that is run when the notebook is loaded.
// It contains some requirejs configuration and the `load_ipython_extension`
// which is required for any notebook extension.
//
// Some static assets may be required by the custom widget javascript. The base
// url for the notebook is not known at build time and is therefore computed
// dynamically.
window.__webpack_public_path__ = document.querySelector('body').getAttribute('data-base-url') + 'nbextensions/escher'
// Configure requirejs
if (window.require) {
window.require.config({
map: {
'*': {
escher: 'nbextensions/escher/escher.min'
}
}
})
}
// Export the required load_ipython_extension
module.exports = {
load_ipython_extension: () => {}
}