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

File last commit:

r14449:36f8d836
r14449:36f8d836
Show More
__init__.py
13 lines | 496 B | text/x-python | PythonLexer
Jonathan Frederic
Remove init_widget_js, use require.js for everything...
r14342 from .widget import Widget
Jonathan Frederic
Register new widgets in IPython.html.widgets namespace
r14244
Jonathan Frederic
Fixed widget imports for Python3
r14300 from .widget_bool import BoolWidget
from .widget_button import ButtonWidget
from .widget_container import ContainerWidget
from .widget_float import FloatWidget
from .widget_float_range import FloatRangeWidget
Jonathan Frederic
Add ImageWidget
r14449 from .widget_image import ImageWidget
Jonathan Frederic
Fixed widget imports for Python3
r14300 from .widget_int import IntWidget
from .widget_int_range import IntRangeWidget
from .widget_multicontainer import MulticontainerWidget
from .widget_selection import SelectionWidget
from .widget_string import StringWidget