From 548a1bc045d8317fa3d7448d92977c09676b4b53 2014-01-16 10:56:04 From: Jonathan Frederic Date: 2014-01-16 10:56:04 Subject: [PATCH] Use relative paths for widget js jquery imports --- diff --git a/IPython/html/widgets/widget.py b/IPython/html/widgets/widget.py index 3069afa..e60b39c 100644 --- a/IPython/html/widgets/widget.py +++ b/IPython/html/widgets/widget.py @@ -35,7 +35,7 @@ def init_widget_js(): name = filename.rsplit('.', 1)[0] if not (name == 'widget' or name == '__init__') and name.startswith('widget_'): # Remove 'widget_' from the start of the name before compiling the path. - js_path = '/static/notebook/js/widgets/%s.js' % name[7:] + js_path = '../static/notebook/js/widgets/%s.js' % name[7:] display(Javascript(data='$.getScript("%s");' % js_path), exclude="text/plain")