create entries without white characters

This commit is contained in:
ReznoRMichael 2021-07-03 14:43:46 +02:00
parent 5a763d4ee2
commit e1ab36f65d
4 changed files with 18 additions and 18 deletions

View file

@ -1376,9 +1376,9 @@ function InitialHTMLPopulate(sections) {
// if (localStorage.getItem("hkCheckboxSpoilers") === "checked") document.getElementById("checkbox-spoilers").checked = true;
// Prevents wrong checkbox behaviour (must run after everything is finished)
/* CheckboxHintsToggle();
CheckboxSpoilersToggle(); */
(0,_page_functions_js__WEBPACK_IMPORTED_MODULE_1__.CheckboxHintsToggle)();
(0,_page_functions_js__WEBPACK_IMPORTED_MODULE_1__.CheckboxSpoilersToggle)();
}
/**
* Zero-fill all "percent" properties in the JSON Object (reset to default)
@ -5023,7 +5023,7 @@ function SingleEntryFill(section, entry) {
if (textPrefix.includes("<del>")) textSuffix = "<del>".concat(textSuffix, "</del>");
}
return "\n <div class=\"single-entry\">\n ".concat(icon, "\n ").concat(b[0]).concat(textPrefix).concat(b[1], "\n ").concat(span[0], "\n ").concat(p, "\n ").concat(spoiler[0], "\n ").concat(textSuffix, "\n ").concat(spoiler[1], "\n ").concat(span[1], "\n </div>\n ");
return ["<div class='single-entry'>", icon, "".concat(b[0]).concat(textPrefix).concat(b[1]), span[0], p, spoiler[0], textSuffix, spoiler[1], span[1], "</div>"].join("");
}
/**
* Adds HTML string to an element with a given ID.

File diff suppressed because one or more lines are too long

View file

@ -1449,8 +1449,8 @@ function InitialHTMLPopulate(sections) {
// if (localStorage.getItem("hkCheckboxSpoilers") === "checked") document.getElementById("checkbox-spoilers").checked = true;
// Prevents wrong checkbox behaviour (must run after everything is finished)
/* CheckboxHintsToggle();
CheckboxSpoilersToggle(); */
CheckboxHintsToggle();
CheckboxSpoilersToggle();
}
/**

View file

@ -330,18 +330,18 @@ function SingleEntryFill(section, entry) {
}
return `
<div class="single-entry">
${icon}
${b[0]}${textPrefix}${b[1]}
${span[0]}
${p}
${spoiler[0]}
${textSuffix}
${spoiler[1]}
${span[1]}
</div>
`;
return [
"<div class='single-entry'>",
icon,
`${b[0]}${textPrefix}${b[1]}`,
span[0],
p,
spoiler[0],
textSuffix,
spoiler[1],
span[1],
"</div>"
].join("");
}