float.js
19 lines
| 774 B
| application/javascript
|
JavascriptLexer
Jonathan Frederic
|
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
|
r14374 | define(["notebook/js/widget"], function(widget_manager){ | |
Jonathan Frederic
|
r14265 | var FloatWidgetModel = IPython.WidgetModel.extend({}); | |
Jonathan Frederic
|
r14374 | widget_manager.register_widget_model('FloatWidgetModel', FloatWidgetModel); | |
Jonathan Frederic
|
r14265 | }); |