This commit is contained in:
TheGiddyLimit
2024-01-25 23:07:09 +00:00
parent 5ffd4acdb4
commit a4e391a3e7
94 changed files with 7263 additions and 939 deletions

View File

@@ -21,10 +21,6 @@ class PlutoniumPage {
{path: "plutonium/compact-chat.webp", id: "wrp-img-compact-chat"},
];
static _VIDEOS = [
{path: "plutonium/artbrowser.webm", id: "video-artbrowser"},
];
static _pOnLoad_initElements () {
this._IMAGES
.forEach(({path, id}) => {
@@ -34,14 +30,6 @@ class PlutoniumPage {
.html(`<img class="big-help-gif" src="${url}" loading="lazy">`)
.attr("href", url);
});
this._VIDEOS
.forEach(({path, id}) => {
const url = Renderer.get().getMediaUrl("img", path);
$(`#${id}`)
.html(`<source src="${url}" type="video/webm">`);
});
}
static async pOnLoad () {