Voeg 28 herkenbare kleurplaten en creatieve niveaus toe (v0.4.66-beta) #4

Open
bes-r wants to merge 207 commits from bes-r/kleurplaten-v0-4-66 into main AGit
2 changed files with 2 additions and 1 deletions
Showing only changes of commit b80da89ab6 - Show all commits

View file

@ -330,7 +330,7 @@ function persistUser(){
function persistWords(){
if(!currentUser) return;
clearTimeout(saveTimer);
saveTimer = setTimeout(persistUser, 800);
saveTimer = setTimeout(()=>{ stashCurrent(); persistUser(); }, 800);
}
function generalExtraFromData(data){
return (data && data.generalExtra) ? data.generalExtra : {nl:[], en:[]};

View file

@ -157,6 +157,7 @@ function mountAnchor(root, initState){
else delete S.cells[k];
syncSource();
render();
persistWords();
};
inp.addEventListener("keydown", ev=>{
ev.stopPropagation();