Skip to content

Instantly share code, notes, and snippets.

@voigtan
Created July 27, 2015 06:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save voigtan/ae3044315eada978e08c to your computer and use it in GitHub Desktop.
Save voigtan/ae3044315eada978e08c to your computer and use it in GitHub Desktop.
var optionsRender = function(item) {
return [
'<li>',
'<label>',
'<input',
(item.selected ? ' checked' : ''),
' type=' + _checkboxType,
' name="__' + _select.name + '"',
' value="' + item.value + '"',
'>',
'<span class="custom-input"/> ',
item.label,
'</label>',
'</li>'
].join('');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment