Skip to content

Support templates with just a select tag in them.

Latest
Compare
Choose a tag to compare
@latentflip latentflip released this 01 Sep 08:24
· 137 commits to master since this release

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!