map inverted behaviour of checkbox
This commit is contained in:
parent
8ac8f45ce7
commit
b8537fbf81
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@
|
|||
console.log("Current: " + currentFlags);
|
||||
|
||||
setInterval(function () {
|
||||
var url = `https://{host}/admin/dashboard?filtered={document.getElementById("chk-apply-filters").checked}`;
|
||||
var url = `https://{host}/admin/dashboard?filtered={!document.getElementById("chk-apply-filters").checked}`;
|
||||
console.log("Calling: " + url);
|
||||
$.get(url, function (data) {
|
||||
var updatedTitle = $("<html/>").html(data).find("title").text();
|
||||
|
|
Loading…
Reference in a new issue