Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shorttompkins/6a87d544ff4409b99e7b to your computer and use it in GitHub Desktop.
Save shorttompkins/6a87d544ff4409b99e7b to your computer and use it in GitHub Desktop.
Handlebars.registerHelper("select", function(value, options) {
return options.fn(this)
.split('\n')
.map(function(v) {
var t = 'value="' + value + '"'
return ! RegExp(t).test(v) ? v : v.replace(t, t + ' selected="selected"')
})
.join('\n')
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment