##// END OF EJS Templates
Moved get_msg_cell which depends on notebook specific logic...
Moved get_msg_cell which depends on notebook specific logic into the WidgetManager for easy override. Also removed almost all of the logic that refers to cell.output_area inside the model and replaced it with logic that uses cell.

File last commit:

r14374:49ef62f3
r14378:3c4d9962
Show More
basic_widgets.js
23 lines | 923 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.
//----------------------------------------------------------------------------
//============================================================================
// Basic Widgets
//============================================================================
define([
"notebook/js/widgets/bool",
"notebook/js/widgets/button",
"notebook/js/widgets/container",
"notebook/js/widgets/float",
"notebook/js/widgets/float_range",
"notebook/js/widgets/int",
"notebook/js/widgets/int_range",
"notebook/js/widgets/multicontainer",
"notebook/js/widgets/selection",
"notebook/js/widgets/string",
], function(){ return true; });