add comment views are in *_range

This commit is contained in:
Jonathan Frederic 2014-01-08 11:37:53 +00:00
parent 5e9a090423
commit b5f97c1227
2 changed files with 6 additions and 0 deletions

View File

@ -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.
});

View File

@ -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.
});