From f733d7c1559e4f3c7d3359a0a7dcac48c8f64b89 2014-08-07 17:12:15 From: Jason Grout Date: 2014-08-07 17:12:15 Subject: [PATCH] Default view should be the base widget view class --- diff --git a/IPython/html/widgets/widget.py b/IPython/html/widgets/widget.py index be945ca..a215b57 100644 --- a/IPython/html/widgets/widget.py +++ b/IPython/html/widgets/widget.py @@ -98,7 +98,7 @@ class Widget(LoggingConfigurable): #------------------------------------------------------------------------- _model_name = Unicode('WidgetModel', help="""Name of the backbone model registered in the front-end to create and sync this widget with.""") - _view_name = Unicode(help="""Default view registered in the front-end + _view_name = Unicode('WidgetView', help="""Default view registered in the front-end to use to represent the widget.""", sync=True) _comm = Instance('IPython.kernel.comm.Comm')