##// END OF EJS Templates
Add ImageWidget
Add ImageWidget

File last commit:

r14449:36f8d836
r14449:36f8d836
Show More
basic_widgets.js
24 lines | 956 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.
//----------------------------------------------------------------------------
//============================================================================
// Basic Widgets
//============================================================================
Jonathan Frederic
Added missing basic_widgets js
r14343 define([
"notebook/js/widgets/bool",
"notebook/js/widgets/button",
"notebook/js/widgets/container",
"notebook/js/widgets/float",
"notebook/js/widgets/float_range",
Jonathan Frederic
Add ImageWidget
r14449 "notebook/js/widgets/image",
Jonathan Frederic
Added missing basic_widgets js
r14343 "notebook/js/widgets/int",
"notebook/js/widgets/int_range",
"notebook/js/widgets/multicontainer",
"notebook/js/widgets/selection",
"notebook/js/widgets/string",
Jonathan Frederic
Changed require.js load calls to allow require.js to pass...
r14374 ], function(){ return true; });