From 19e9cee437a0d8230a4d072974075803cf85589d Mon Sep 17 00:00:00 2001 From: Jonathan Frederic Date: Wed, 18 Dec 2013 13:34:44 -0800 Subject: [PATCH] Fix, require.js needs return of widget manager for other widgets --- IPython/html/static/notebook/js/widgets/base.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/IPython/html/static/notebook/js/widgets/base.js b/IPython/html/static/notebook/js/widgets/base.js index 1669e1ad9..d445e2bc6 100644 --- a/IPython/html/static/notebook/js/widgets/base.js +++ b/IPython/html/static/notebook/js/widgets/base.js @@ -557,4 +557,6 @@ function(widget_manager, underscore, backbone){ IPython.WidgetModel = WidgetModel; IPython.WidgetView = WidgetView; + + return widget_manager; }); \ No newline at end of file