mirror of
https://github.com/wukko/cobalt.git
synced 2025-01-12 20:25:06 +01:00
disable ask how to save checkbox on ios
This commit is contained in:
parent
5580eb1e13
commit
689bac83d5
1 changed files with 4 additions and 1 deletions
|
@ -475,7 +475,10 @@ window.onload = () => {
|
|||
eid("url-input-area").value = "";
|
||||
notificationCheck();
|
||||
loadCelebrationsEmoji();
|
||||
if (isIOS) sSet("downloadPopup", "true");
|
||||
if (isIOS) {
|
||||
sSet("downloadPopup", "true");
|
||||
eid("downloadPopup-chkbx").style.pointerEvents = "none"; // wip, disables the checkbox without any signs
|
||||
}
|
||||
let urlQuery = new URLSearchParams(window.location.search).get("u");
|
||||
if (urlQuery !== null && regex.test(urlQuery)) {
|
||||
eid("url-input-area").value = urlQuery;
|
||||
|
|
Loading…
Reference in a new issue