Skip to content

Commit

Permalink
npm run format
Browse files Browse the repository at this point in the history
  • Loading branch information
GarboMuffin committed Sep 20, 2024
1 parent f4f8855 commit 49b2fb1
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions extensions/Lily/Video.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
// if it's not in the DOM in a place the browser thinks is visible. That means we can't
// use display: none.
// See https://github.com/TurboWarp/scratch-render/issues/12
const elementContainer = document.createElement('div');
elementContainer.className = 'tw-extensions-lily-videos-container';
elementContainer.style.pointerEvents = 'none';
elementContainer.style.position = 'absolute';
elementContainer.style.opacity = '0';
elementContainer.style.width = '0';
elementContainer.style.height = '0';
elementContainer.style.visibility = 'hidden';
elementContainer.ariaHidden = 'true';
const elementContainer = document.createElement("div");
elementContainer.className = "tw-extensions-lily-videos-container";
elementContainer.style.pointerEvents = "none";
elementContainer.style.position = "absolute";
elementContainer.style.opacity = "0";
elementContainer.style.width = "0";
elementContainer.style.height = "0";
elementContainer.style.visibility = "hidden";
elementContainer.ariaHidden = "true";
document.body.appendChild(elementContainer);

const BitmapSkin = runtime.renderer.exports.BitmapSkin;
Expand Down

0 comments on commit 49b2fb1

Please sign in to comment.