Slide 26
Slide 26 text
function deviceSelector(page, side, idx) {
return h(
'div',
{ className: 'page-design-cont sub-section pure-u-1-1' },
[h(
'span',
null,
'Device'
), h(
'div',
{ onchange: handleClick, 'data-click': { type: "update-form" } },
[
radioButton('iPhone', 'iphone', radioOpts),
radioButton('iPad', 'ipad', radioOpts),
radioButton('Browser', 'browser', radioOpts)
]
)]
);
}