mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-16 13:19:58 +00:00
11 lines
408 B
JavaScript
11 lines
408 B
JavaScript
|
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;
|
||
|
}
|