awesome-prometheus-alerts/assets/js/app.js
2019-10-26 16:41:11 +02:00

16 lines
No EOL
600 B
JavaScript

$(function () {
var clipboardRules = new ClipboardJS('.clipboard-single', {
text: function (trigger) {
const id = trigger.getAttribute('data-clipboard-target-id');
const html = $("#" + id + " .highlight");
return html.text();
},
});
var clipboardCategories = new ClipboardJS('.clipboard-multiple', {
text: function (trigger) {
const id = trigger.getAttribute('data-clipboard-target-id');
const html = $("[id^=" + id + "] .highlight");
return html.append("\n\n").text();
},
});
});