| 5834 | } |
| 5835 | |
| 5836 | function currentZoomPercent() { |
| 5837 | try { |
| 5838 | if (window.fileriseZoom && typeof window.fileriseZoom.currentPercent === "function") { |
| 5839 | return window.fileriseZoom.currentPercent(); |
| 5840 | } |
| 5841 | } catch (e) {} |
| 5842 | const css = getComputedStyle(document.documentElement).getPropertyValue('--app-zoom') || "1"; |
| 5843 | const n = parseFloat(css); |
| 5844 | return Number.isFinite(n) && n > 0 ? Math.round(n * 100) : 100; |
| 5845 | } |
| 5846 | |
| 5847 | function buildZoomControls(host) { |
| 5848 | const wrap = document.createElement("div"); |