Jonathan Frederic

Results 18 comments of Jonathan Frederic

Off the top of my head ``` js require(["widgets/js/widget"], function(WidgetManager){ ``` would change to ``` js require(["nbextensions/widgets/js/manager", "nbextensions/widgets/js/widget"], function(manager, widget){ ``` and ``` js WidgetManager.register_widget_view ``` to ``` js manager.WidgetManager.register_widget_view...

> In general, I would not recommend using register_widget_view for custom widgets. ditto

Hi @stevengj , sorry I was on vacation the last week and the week before, I didn't catch this until now. @takluyver is right, just the methods of CommManager need...

The upstream discussion can be found here: https://github.com/jupyter/notebook/issues/116

Thanks @bollwyvl , I'll add a note to the README. I think you're right- that's the best we can do here.

Hi @jeffalstott , AFAIK there isn't a way to do that with the current design. However, I don't think it should be too difficult to implement. Side note: I've been...

That may actually be closed by ipython/ipywidgets#382 . I pinged the author

I think this work will also improve the lives of other people using widgets outside of the context of the notebook already, like our friends at IBM.