PluginProbe
Extendify / trunk
Extendify vtrunk
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
← All changes | src/Agent/buttons.js +2 -1 3.1.5 → trunk View file →
@@ -49,9 +49,10 @@
49 49 });
50 50 agent.style.position = 'sticky';
51 51 agent.style.top = 'calc(100% - var(--extendify-agent-mobile-btn-height))';
52 52 agent.style.bottom = '0';
53 - agent.style.zIndex = '99999';
53 + // Under the canvas scrim the tap that restores the chat never lands.
54 + agent.style.zIndex = '999999';
54 55 document.body.appendChild(agent);
55 56 render(<Mobile />, agent);
56 57 });
57 58