UNPKG

524 BJavaScriptView Raw
1// This file contains the javascript that is run when the notebook is loaded.
2// It contains some requirejs configuration and the `load_ipython_extension`
3// which is required for any notebook extension.
4
5// Configure requirejs
6if (window.require) {
7 window.require.config({
8 map: {
9 "*" : {
10 "plotlywidget": "nbextensions/plotlywidget/index"
11 }
12 }
13 });
14}
15
16// Export the required load_ipython_extention
17module.exports = {
18 load_ipython_extension: function() {}
19};