@agent-link/server 0.1.104 → 0.1.106
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/web/index.html +0 -18
- package/web/style.css +3 -2
package/package.json
CHANGED
package/web/index.html
CHANGED
|
@@ -18,24 +18,6 @@
|
|
|
18
18
|
: '/vendor/github-dark.min.css';
|
|
19
19
|
})();
|
|
20
20
|
</script>
|
|
21
|
-
<script>
|
|
22
|
-
// iPad: track visualViewport to handle keyboard accessory bar
|
|
23
|
-
(function() {
|
|
24
|
-
if (!window.visualViewport) return;
|
|
25
|
-
function onViewportChange() {
|
|
26
|
-
var vv = window.visualViewport;
|
|
27
|
-
var app = document.getElementById('app');
|
|
28
|
-
if (!app) return;
|
|
29
|
-
// When keyboard accessory bar appears, visual viewport shrinks
|
|
30
|
-
// and may scroll. Adjust #app to stay within visible area.
|
|
31
|
-
app.style.top = vv.offsetTop + 'px';
|
|
32
|
-
app.style.height = vv.height + 'px';
|
|
33
|
-
app.style.bottom = 'auto';
|
|
34
|
-
}
|
|
35
|
-
window.visualViewport.addEventListener('resize', onViewportChange);
|
|
36
|
-
window.visualViewport.addEventListener('scroll', onViewportChange);
|
|
37
|
-
})();
|
|
38
|
-
</script>
|
|
39
21
|
<script src="/vendor/vue.global.prod.js"></script>
|
|
40
22
|
<script src="/vendor/marked.min.js"></script>
|
|
41
23
|
<script src="/vendor/highlight.min.js"></script>
|