asdasd
This commit is contained in:
@@ -425,6 +425,9 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
||||
$current = modules()->settings($moduleName);
|
||||
$refreshSchedulerState();
|
||||
|
||||
while (ob_get_level() > 0) {
|
||||
ob_end_clean();
|
||||
}
|
||||
header('Content-Type: application/json; charset=utf-8');
|
||||
echo json_encode([
|
||||
'ok' => true,
|
||||
@@ -1744,9 +1747,10 @@ $activeDbGroup = $testGroup !== null && array_key_exists($testGroup, $dbGroups)
|
||||
|
||||
const persistScheduler = async () => {
|
||||
if (!form) return true;
|
||||
const response = await fetch(window.location.href, {
|
||||
const response = await fetch(form.action || window.location.href, {
|
||||
method: 'POST',
|
||||
body: collectSchedulerPayload(),
|
||||
credentials: 'same-origin',
|
||||
headers: {
|
||||
'Accept': 'application/json',
|
||||
'X-Requested-With': 'XMLHttpRequest',
|
||||
@@ -2144,7 +2148,8 @@ $activeDbGroup = $testGroup !== null && array_key_exists($testGroup, $dbGroups)
|
||||
.scheduler-modal__backdrop {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background: #ffffff;
|
||||
background: rgba(255, 255, 255, 0.38);
|
||||
backdrop-filter: blur(1px);
|
||||
}
|
||||
|
||||
.scheduler-modal__dialog {
|
||||
|
||||
Reference in New Issue
Block a user