diff --git a/IPython/html/static/notebook/js/widgets/widget_float.js b/IPython/html/static/notebook/js/widgets/widget_float.js index ab657cf3b..6197fcf45 100644 --- a/IPython/html/static/notebook/js/widgets/widget_float.js +++ b/IPython/html/static/notebook/js/widgets/widget_float.js @@ -17,4 +17,7 @@ define(["notebook/js/widgets/widget"], function(widget_manager){ var FloatWidgetModel = IPython.WidgetModel.extend({}); widget_manager.register_widget_model('FloatWidgetModel', FloatWidgetModel); + + // The Views for this model are shared with the bounded float, and can be + // found in widget_float_range.js. }); \ No newline at end of file diff --git a/IPython/html/static/notebook/js/widgets/widget_int.js b/IPython/html/static/notebook/js/widgets/widget_int.js index fd3d68108..3ea32bf88 100644 --- a/IPython/html/static/notebook/js/widgets/widget_int.js +++ b/IPython/html/static/notebook/js/widgets/widget_int.js @@ -17,4 +17,7 @@ define(["notebook/js/widgets/widget"], function(widget_manager){ var IntWidgetModel = IPython.WidgetModel.extend({}); widget_manager.register_widget_model('IntWidgetModel', IntWidgetModel); + + // The Views for this model are shared with the bounded int, and can be + // found in widget_int_range.js. }); \ No newline at end of file