always prettify edit cp by default

This commit is contained in:
Zhora Shalyapin 2025-03-20 07:52:50 +00:00
parent 5ef6a9c5a7
commit 43ff4dff97

15
main.js
View File

@ -68,16 +68,11 @@
PREV_CREATED: "prevCreated", PREV_CREATED: "prevCreated",
LATTITUDE: "lattitude", LATTITUDE: "lattitude",
LONGITUDE: "longitude", LONGITUDE: "longitude",
ALWAYS_PRETTIFY: "always", NOT_PRETTIFY_EDIT_CP: "notPrettifyEditCp",
REDIRECT_EXIT: "redirectExit", REDIRECT_EXIT: "redirectExit",
DISABLED_PAGES: "disabledPages" DISABLED_PAGES: "disabledPages"
} }
const prettifyTypes = {
ALWAYS: "always",
ONCE: "once"
}
const ZOOM = 17 const ZOOM = 17
const METERS = 510 const METERS = 510
@ -727,9 +722,9 @@
} }
} }
if (this.checked) if (this.checked)
localStorage.setItem(localStorageItems.ALWAYS_PRETTIFY, "+") localStorage.removeItem(localStorageItems.NOT_PRETTIFY_EDIT_CP)
else else
localStorage.removeItem(localStorageItems.ALWAYS_PRETTIFY) localStorage.setItem(localStorageItems.NOT_PRETTIFY_EDIT_CP, "+")
}) })
alwaysPrettify.appendChild(alwaysPrettifyCheckbox) alwaysPrettify.appendChild(alwaysPrettifyCheckbox)
@ -1387,9 +1382,9 @@
} }
function checkIfAlwaysPrettify(form, oldTable, container, insertedFileRows) { function checkIfAlwaysPrettify(form, oldTable, container, insertedFileRows) {
if (localStorage.getItem(localStorageItems.ALWAYS_PRETTIFY)) { if (localStorage.getItem(localStorageItems.NOT_PRETTIFY_EDIT_CP) === null) {
document.querySelector(`input[name^="always-prettify-0"]`).click() document.querySelector(`input[name^="always-prettify-0"]`).click()
prettify(form, oldTable, container, insertedFileRows) prettifyEditCpForm(form, oldTable, container, insertedFileRows)
} }
} }