We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07f2786 commit f94acb6Copy full SHA for f94acb6
steps/edit.js
@@ -9,7 +9,6 @@ export function initStage() {
9
10
//aspect ratio logic
11
function setAspect(ratio) {
12
- window.setAspect = setAspect; //so that in-line HTML will still work.
13
const video = document.getElementById('video-preview');
14
const image = document.getElementById('image-preview');
15
@@ -33,6 +32,8 @@ export function initStage() {
33
32
});
34
35
+ window.setAspect = setAspect; //so that in-line HTML will still work.
36
+
37
// Button listeners (logic to be implemented later)
38
document.getElementById("split-btn")?.addEventListener("click", () => {
39
console.warn("Split function not implemented yet.");
0 commit comments