[Web] Allow spam/ham "traps"
[Web] Changes to docker functions [Web] List all containers of compose project name
This commit is contained in:
@@ -1,15 +1,16 @@
|
||||
$(document).ready(function() {
|
||||
if ($("#goto_null").is(":checked")) {
|
||||
$('#textarea_alias_goto').prop('disabled', true);
|
||||
}
|
||||
$("#goto_null").click(function( event ) {
|
||||
if ($("#goto_null").is(":checked")) {
|
||||
$(".goto_checkbox").click(function( event ) {
|
||||
$("form[data-id='editalias'] .goto_checkbox").not(this).prop('checked', false);
|
||||
if ($("form[data-id='editalias'] .goto_checkbox:checked").length > 0) {
|
||||
$('#textarea_alias_goto').prop('disabled', true);
|
||||
}
|
||||
else {
|
||||
$("#textarea_alias_goto").removeAttr('disabled');
|
||||
}
|
||||
});
|
||||
if ($("form[data-id='editalias'] .goto_checkbox:checked").length > 0) {
|
||||
$('#textarea_alias_goto').prop('disabled', true);
|
||||
}
|
||||
$("#script_data").numberedtextarea({allowTabChar: true});
|
||||
});
|
||||
if ($("#multiple_bookings_select").val() == "custom") {
|
||||
|
Reference in New Issue
Block a user