aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/MainView.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/views/MainView.tsx')
-rw-r--r--src/client/views/MainView.tsx15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/client/views/MainView.tsx b/src/client/views/MainView.tsx
index ef44e0a4e..11ffcc734 100644
--- a/src/client/views/MainView.tsx
+++ b/src/client/views/MainView.tsx
@@ -824,12 +824,21 @@ export class MainView extends React.Component {
</div>;
</span>, ele);
- const interval = setInterval(() => {
+ var success = false;
+ const onSuccess = () => {
+ console.log("EDIT SUCCESS");
+ success = true;
+ clearTimeout(interval);
+ document.removeEventListener("editSuccess", onSuccess);
+ };
+
+ const interval = setInterval(() => { // keep trying to click until annotations have loaded and editing is successful
console.log("clicked");
- simulateMouseClick(ele, 50, 50, 50, 50);
+ !success && simulateMouseClick(ele, 50, 50, 50, 50);
}, 500);
- setTimeout(() => clearInterval(interval), 10000);
+ setTimeout(() => !success && clearInterval(interval), 10000); // give up if no success after 10s
+ document.addEventListener("editSuccess", onSuccess);
});
}
}