You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
900 B
23 lines
900 B
//----------------------------------------------------------------------------
|
|
// Copyright (C) 2013 The IPython Development Team
|
|
//
|
|
// Distributed under the terms of the BSD License. The full license is in
|
|
// the file COPYING, distributed as part of this software.
|
|
//----------------------------------------------------------------------------
|
|
|
|
//============================================================================
|
|
// FloatWidget
|
|
//============================================================================
|
|
|
|
/**
|
|
* @module IPython
|
|
* @namespace IPython
|
|
**/
|
|
|
|
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.
|
|
}); |