##// END OF EJS Templates
Everyone uses one model
Everyone uses one model

File last commit:

r14591:a76124e0
r14591:a76124e0
Show More
widget_int.js
19 lines | 754 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
Updated require.js references
r14537 define(["notebook/js/widgets/widget"], function(widget_manager){
Jonathan Frederic
add comment views are in *_range
r14572 // The Views for this model are shared with the bounded int, and can be
// found in widget_int_range.js.
Jonathan Frederic
Added int widget
r14266 });