Merge pull request #32 from db-2001/persistent-release-status

Move release-status to top right and keep visible
This commit is contained in:
2023-11-03 09:50:24 +01:00
committed by GitHub
3 changed files with 31 additions and 19 deletions

View File

@ -219,10 +219,10 @@ function CreateManga(manga, connector){
statusTooltip.innerText = 'Status Unavailable';
}
releaseStatus.appendChild(statusTooltip); //Append the tooltip to the indicator circle
mangaName.appendChild(releaseStatus); //Append the release status indicator to the info block
info.appendChild(mangaName);
mangaElement.appendChild(info);
mangaElement.appendChild(releaseStatus); //Append the release status indicator to the publication element
return mangaElement;
}