Commit afbb0b5f authored by Aarni Koskela's avatar Aarni Koskela
Browse files

Zoom and Pan: simplify getElements (it's not actually async)

parent 68cda4f2
Loading
Loading
Loading
Loading
+4 −10
Original line number Diff line number Diff line
@@ -143,16 +143,10 @@ onUiLoaded(async() => {
    let mouseX, mouseY;
    let activeElement;

    async function getElements() {
        const elements = await Promise.all(
            Object.values(elementIDs).map(id => gradioApp().querySelector(id))
        );
        return Object.fromEntries(
            Object.keys(elementIDs).map((key, index) => [key, elements[index]])
        );
    }

    const elements = await getElements();
    const elements = Object.fromEntries(Object.keys(elementIDs).map((id) => [
        id,
        gradioApp().querySelector(elementIDs[id]),
    ]));
    const elemData = {};

    // Apply functionality to the range inputs. Restore redmask and correct for long images.