#1 Fix for lateloading in the list
This commit is contained in:
parent
604db7a723
commit
5c8a2d45fb
|
@ -1,7 +1,23 @@
|
||||||
const starIcon = "star";
|
const starIcon = "star";
|
||||||
|
const scripts = [
|
||||||
|
changeFollowedStarColor,
|
||||||
|
changeOwnBorderColor,
|
||||||
|
]
|
||||||
|
|
||||||
executeAfterPreload(changeFollowedStarColor);
|
executeAfterPreload(initScripts);
|
||||||
executeAfterPreload(changeOwnBorderColor);
|
|
||||||
|
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() {
|
function changeFollowedStarColor() {
|
||||||
// find stars
|
// find stars
|
||||||
|
|
Loading…
Reference in a new issue