Merge pull request #5 from Vogel612/patch-1

respect filtering preference for queries
This commit is contained in:
Glorfindel83 2018-04-20 20:53:40 +02:00 committed by GitHub
commit 686efaab5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
// @author Glorfindel
// @updateURL https://raw.githubusercontent.com/Glorfindel83/SE-Userscripts/master/admin-flag-notifier/admin-flag-notifier.user.js
// @downloadURL https://raw.githubusercontent.com/Glorfindel83/SE-Userscripts/master/admin-flag-notifier/admin-flag-notifier.user.js
// @version 0.1
// @version 0.2
// @match *://*.stackexchange.com/admin/dashboard*
// @match *://*.stackoverflow.com/admin/dashboard*
// @match *://*.superuser.com/admin/dashboard*
@ -32,7 +32,7 @@
console.log("Current: " + currentFlags);
setInterval(function () {
var url = "https://" + host + "/admin/dashboard?filtered=false";
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();