##// END OF EJS Templates
Added int widget
Added int widget

File last commit:

r14266:f155b0f4
r14266:f155b0f4
Show More
__init__.py
10 lines | 311 B | text/x-python | PythonLexer
Jonathan Frederic
Changed js loading,...
r14261 from base import Widget, init_widget_js
Jonathan Frederic
Register new widgets in IPython.html.widgets namespace
r14244
Jonathan Frederic
Added missing import reference for bool widget
r14264 from bool import BoolWidget
Jonathan Frederic
Register new widgets in IPython.html.widgets namespace
r14244 from container import ContainerWidget
Jonathan Frederic
Added float widget
r14265 from float import FloatWidget
Jonathan Frederic
Register new widgets in IPython.html.widgets namespace
r14244 from float_range import FloatRangeWidget
Jonathan Frederic
Added int widget
r14266 from int import IntWidget
Jonathan Frederic
Register new widgets in IPython.html.widgets namespace
r14244 from int_range import IntRangeWidget
from selection import SelectionWidget
from string import StringWidget