Feature/#1 requests page own requests colored border #5

Merged
Serraniel merged 2 commits from feature/#1-requests-page-own-requests-colored-border into develop 2020-04-25 23:23:56 +02:00
Showing only changes of commit 5c8a2d45fb - Show all commits

View file

@ -1,7 +1,23 @@
const starIcon = "star";
const scripts = [
changeFollowedStarColor,
changeOwnBorderColor,
]
executeAfterPreload(changeFollowedStarColor);
executeAfterPreload(changeOwnBorderColor);
executeAfterPreload(initScripts);
function initScripts() {
// run the scripts
runScripts();
// because of late loading in the request list we have to run the codes each time the list changes
document.querySelector("md-list").addEventListener("DOMNodeInserted", event => runScripts(event), false);
}
function runScripts() {
scripts.forEach(script => script());
console.log("DDS")
}
function changeFollowedStarColor() {
// find stars