0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-10 15:37:30 +00:00
healthchecks_healthchecks/static/js/ntfy_form.js

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}});
});