From 49e0075c345499bd8a4fd081d1ac4fcb651bd08c Mon Sep 17 00:00:00 2001 From: "Jon M. Mease" Date: Tue, 17 Apr 2018 15:44:15 -0400 Subject: [PATCH] Jupyterlab support!!!!! See https://github.com/jupyter-widgets/ipywidgets/issues/2053 Install with $ jupyter-labextension install js/ --- js/src/index.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/js/src/index.js b/js/src/index.js index 106ab52033..fd81a0c733 100644 --- a/js/src/index.js +++ b/js/src/index.js @@ -1,12 +1,3 @@ -// Entry point for the notebook bundle containing custom model definitions. -// -// Setup notebook base URL -// -// 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. -__webpack_public_path__ = document.querySelector('body').getAttribute('data-base-url') + 'nbextensions/plotlywidget/'; - // Export widget models and views, and the npm package version number. module.exports = require('./Figure.js'); module.exports['version'] = require('../package.json').version;