pinokiod 3.65.0 → 3.66.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/server/public/common.js +4 -3
package/package.json
CHANGED
package/server/public/common.js
CHANGED
|
@@ -367,6 +367,10 @@ document.addEventListener("DOMContentLoaded", () => {
|
|
|
367
367
|
}
|
|
368
368
|
}
|
|
369
369
|
}
|
|
370
|
+
|
|
371
|
+
if (window !== window.top) {
|
|
372
|
+
document.body.removeAttribute("data-agent")
|
|
373
|
+
}
|
|
370
374
|
|
|
371
375
|
// Listen for window resize
|
|
372
376
|
window.addEventListener('resize', updateAllTooltips);
|
|
@@ -559,6 +563,3 @@ document.addEventListener("DOMContentLoaded", () => {
|
|
|
559
563
|
})
|
|
560
564
|
}
|
|
561
565
|
})
|
|
562
|
-
if (window !== window.top) {
|
|
563
|
-
document.body.removeAttribute("data-agent")
|
|
564
|
-
}
|