##// END OF EJS Templates
Privatize _handle_com_open of WidgetManager
Privatize _handle_com_open of WidgetManager

File last commit:

r14374:49ef62f3
r14380:3cda2684
Show More
float.js
19 lines | 774 B | application/javascript | JavascriptLexer
//----------------------------------------------------------------------------
// 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/widget"], function(widget_manager){
var FloatWidgetModel = IPython.WidgetModel.extend({});
widget_manager.register_widget_model('FloatWidgetModel', FloatWidgetModel);
});