27 lines
649 B
JavaScript
27 lines
649 B
JavaScript
/* Pi-hole: A black hole for Internet advertisements
|
|
* (c) 2023 Pi-hole, LLC (https://pi-hole.net)
|
|
* Network-wide ad blocking via your own hardware.
|
|
*
|
|
* This file is copyright under the latest version of the EUPL.
|
|
* Please see LICENSE file for your rights under this license. */
|
|
|
|
/* global setConfigValues: false, apiFailure: false, i18n */
|
|
|
|
"use strict";
|
|
|
|
function getConfig() {
|
|
$.ajax({
|
|
url: document.body.dataset.apiurl + "/config/?detailed=true",
|
|
})
|
|
.done(data => {
|
|
setConfigValues("", "", data.config);
|
|
})
|
|
.fail(data => {
|
|
apiFailure(data);
|
|
});
|
|
}
|
|
|
|
i18n.waitForTranslations(() => {
|
|
getConfig();
|
|
});
|