mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-11 17:38:54 +00:00
10 lines
209 B
JavaScript
10 lines
209 B
JavaScript
function takeScreenshot() {
|
|
document.documentElement.classList.remove("reftest-wait");
|
|
}
|
|
|
|
function takeScreenshotDelayed(timeout) {
|
|
setTimeout(function() {
|
|
takeScreenshot();
|
|
}, timeout);
|
|
}
|