##// END OF EJS Templates
Dev meeting Jan 2014, widget review day 2
Dev meeting Jan 2014, widget review day 2

File last commit:

r14578:10a84acc
r14587:d8f5efb7
Show More
__init__.py
13 lines | 515 B | text/x-python | PythonLexer
Jonathan Frederic
s/Widget/DOMWidget s/BaseWidget/Widget
r14540 from .widget import Widget, DOMWidget
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_selection import SelectionWidget
Jonathan Frederic
Finished renaming Multicontainer to SelectionContainer
r14578 from .widget_selectioncontainer import SelectionContainerWidget
Jonathan Frederic
Fixed widget imports for Python3
r14300 from .widget_string import StringWidget