Skip to content
Snippets Groups Projects
Commit 8579da72 authored by lowercasedonkey's avatar lowercasedonkey
Browse files

create in DOM

parent 043cb10e
No related branches found
No related tags found
1 merge request!7564User button to DOM
globalThis.userButton = function() {
const el = new DocumentFragment();
const _Pass = passage();
let div = document.createElement("div");
div.style.fontWeight = "bold";
// We must always have a named element so we have something to refresh even if the button is hidden for a scene
if (_Pass !== "End Week") {
if (_Pass === "Main") {
div.id = "endWeekButton";
div.append(
App.UI.DOM.link(
"END WEEK",
() => endWeek()
)
);
div.append(" ");
App.UI.DOM.appendNewElement("span", div, App.UI.Hotkeys.hotkeys("endWeek"), "hotkey");
el.append(div);
if (V.rulesAssistantAuto === 1 && DefaultRulesError()) {
App.UI.DOM.appendNewElement("div", el, `WARNING: Rules Assistant has rules with errors!`, "yellow");
}
} else {
div.id = "nextButton";
if (V.nextButton !== " ") {
div.append(
App.UI.DOM.passageLink(
V.nextButton,
V.nextLink
)
);
div.append(" ");
App.UI.DOM.appendNewElement("span", div, App.UI.Hotkeys.hotkeys("nextLink"), "hotkey");
}
el.append(div);
}
}
return el;
};
globalThis.updateUserButton = function() {
return jQuery("#nextButton").empty().append(userButton());
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment