Releases: AmpersandJS/ampersand-select-view
Releases · AmpersandJS/ampersand-select-view
Support templates with just a select tag in them.
If you want a really simple select view, you can now get it with a template like this:
new SelectView({
name: 'my-select',
options: ['a', 'b', 'c'],
template: '<select></select>'
})
Thanks to @KimPeeters!