提交 afbb0b5f 编写于 作者: A Aarni Koskela

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

上级 68cda4f2
......@@ -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.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册