vk fixes and new changelog system
This commit is contained in:
11
src/modules/pageRender/onDemand.js
Normal file
11
src/modules/pageRender/onDemand.js
Normal file
@@ -0,0 +1,11 @@
|
||||
import changelogManager from "../changelog/changelogManager.js"
|
||||
|
||||
export function changelogHistory() { // blockId 0
|
||||
let history = changelogManager("history");
|
||||
let render = ``;
|
||||
|
||||
for (let i in history) {
|
||||
render += `<div id="popup-desc" class="changelog-subtitle">${history[i]["title"]}</div><div id="popup-desc" class="desc-padding">${history[i]["content"]}</div>`
|
||||
}
|
||||
return render;
|
||||
}
|
||||
Reference in New Issue
Block a user