##// END OF EJS Templates
Many checks off the todo list, test fixes
Many checks off the todo list, test fixes

File last commit:

r14572:bdf9a530
r14583:ecbe638b
Show More
widget_float.js
22 lines | 900 B | application/javascript | JavascriptLexer
Jonathan Frederic
Added standard IPY JS header to widget JS files.
r14366 //----------------------------------------------------------------------------
// 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
**/
Jonathan Frederic
Updated require.js references
r14537 define(["notebook/js/widgets/widget"], function(widget_manager){
Jonathan Frederic
Added float widget
r14265 var FloatWidgetModel = IPython.WidgetModel.extend({});
Jonathan Frederic
Changed require.js load calls to allow require.js to pass...
r14374 widget_manager.register_widget_model('FloatWidgetModel', FloatWidgetModel);
Jonathan Frederic
add comment views are in *_range
r14572
// The Views for this model are shared with the bounded float, and can be
// found in widget_float_range.js.
Jonathan Frederic
Added float widget
r14265 });