##// END OF EJS Templates
Added missing parameter to get_msg_cell call
Added missing parameter to get_msg_cell call

File last commit:

r14366:f5e3aad1
r14372:efa59b80
Show More
int.js
19 lines | 760 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.
//----------------------------------------------------------------------------
//============================================================================
// IntWidget
//============================================================================
/**
* @module IPython
* @namespace IPython
**/
Jonathan Frederic
Remove init_widget_js, use require.js for everything...
r14342 define(["notebook/js/widget"], function(){
Jonathan Frederic
Added int widget
r14266 var IntWidgetModel = IPython.WidgetModel.extend({});
Jonathan Frederic
Remove init_widget_js, use require.js for everything...
r14342 IPython.widget_manager.register_widget_model('IntWidgetModel', IntWidgetModel);
Jonathan Frederic
Added int widget
r14266 });