Skip to content

Releases: AmpersandJS/ampersand-select-view

Support templates with just a select tag in them.

01 Sep 08:24
Compare
Choose a tag to compare

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!