mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-03-14 20:32:51 +00:00
8 lines
No EOL
283 B
JavaScript
8 lines
No EOL
283 B
JavaScript
$(function() {
|
|
function makeOption(item, escape) {
|
|
var parts = item.text.split(":");
|
|
return `<div class="option">${parts[0]}. <span class="help">${parts[1]}</span></div>`;
|
|
}
|
|
|
|
$("select").selectize({render: {option: makeOption, item: makeOption}});
|
|
}); |