##// END OF EJS Templates
Moved the logic to get a cell by message id into the notebook.js....
Moved the logic to get a cell by message id into the notebook.js. Also added more detail to the comments in the get output area function in widgets.js

File last commit:

r14366:f5e3aad1
r14371:19b5733b
Show More
int.js
19 lines | 760 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.
//----------------------------------------------------------------------------
//============================================================================
// IntWidget
//============================================================================
/**
* @module IPython
* @namespace IPython
**/
define(["notebook/js/widget"], function(){
var IntWidgetModel = IPython.WidgetModel.extend({});
IPython.widget_manager.register_widget_model('IntWidgetModel', IntWidgetModel);
});