Fix deprecated warnings of jquery-migrate

Signed-off-by: Christian König <ckoenig@posteo.de>
This commit is contained in:
Christian König
2022-10-10 15:57:17 +02:00
parent dada13776f
commit d55847013f
11 changed files with 53 additions and 47 deletions

View File

@@ -39,11 +39,11 @@ $(function () {
reloadData();
});
$("#chk1").click(function () {
$("#chk1").on("click", function () {
$("#chk2").prop("checked", this.checked);
scrolling = this.checked;
});
$("#chk2").click(function () {
$("#chk2").on("click", function () {
$("#chk1").prop("checked", this.checked);
scrolling = this.checked;
});