You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

38 lines
892 B

$(function() {
var placeholders = {
email: "[email protected]",
webhook: "http://",
pd: "service key"
}
$("#add-check-kind").change(function() {
$(".channels-add-help p").hide();
var v = $("#add-check-kind").val();
$(".channels-add-help p." + v).show();
$("#add-check-value").attr("placeholder", placeholders[v]);
});
$(".edit-checks").click(function() {
$("#checks-modal").modal("show");
var url = $(this).attr("href");
$.ajax(url).done(function(data) {
$("#checks-modal .modal-content").html(data);
})
return false;
});
var $cm = $("#checks-modal");
$cm.on("click", "#toggle-all", function() {
var value = $(this).prop("checked");
$cm.find(".toggle").prop("checked", value);
console.log("aaa", value);
});
});