mirror of
https://github.com/9001/copyparty.git
synced 2025-08-18 01:22:13 -06:00
sandbox height didnt account for scrollbars
This commit is contained in:
parent
04966164ce
commit
6d1d3e48d8
|
@ -835,8 +835,9 @@ html.y #path a:hover {
|
||||||
.mdo {
|
.mdo {
|
||||||
max-width: 52em;
|
max-width: 52em;
|
||||||
}
|
}
|
||||||
.mdo.sb {
|
.mdo.sb,
|
||||||
max-width: unset;
|
#epi.logue.mdo>iframe {
|
||||||
|
max-width: 54em;
|
||||||
}
|
}
|
||||||
.mdo,
|
.mdo,
|
||||||
.mdo * {
|
.mdo * {
|
||||||
|
|
|
@ -1200,6 +1200,17 @@ function goto(dest) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
var SBW, SBH; // scrollbar size
|
||||||
|
(function () {
|
||||||
|
var el = mknod('div');
|
||||||
|
el.style.cssText = 'overflow:scroll;width:100px;height:100px';
|
||||||
|
document.body.appendChild(el);
|
||||||
|
SBW = el.offsetWidth - el.clientWidth;
|
||||||
|
SBH = el.offsetHeight - el.clientHeight;
|
||||||
|
document.body.removeChild(el);
|
||||||
|
})();
|
||||||
|
|
||||||
|
|
||||||
var have_webp = sread('have_webp');
|
var have_webp = sread('have_webp');
|
||||||
(function () {
|
(function () {
|
||||||
if (have_webp !== null)
|
if (have_webp !== null)
|
||||||
|
@ -6762,7 +6773,7 @@ function sandbox(tgt, rules, cls, html) {
|
||||||
html = '<html class="iframe ' + document.documentElement.className + '"><head><style>' + globalcss() +
|
html = '<html class="iframe ' + document.documentElement.className + '"><head><style>' + globalcss() +
|
||||||
'</style><base target="_parent"></head><body id="b" class="logue ' + cls + '">' + html +
|
'</style><base target="_parent"></head><body id="b" class="logue ' + cls + '">' + html +
|
||||||
'<script>' + env + '</script>' + sandboxjs() +
|
'<script>' + env + '</script>' + sandboxjs() +
|
||||||
'<script>var ebi=document.getElementById.bind(document),d=document.documentElement,' +
|
'<script>var d=document.documentElement,' +
|
||||||
'loc=new URL("' + location.href.split('?')[0] + '");' +
|
'loc=new URL("' + location.href.split('?')[0] + '");' +
|
||||||
'function say(m){window.parent.postMessage(m,"*")};' +
|
'function say(m){window.parent.postMessage(m,"*")};' +
|
||||||
'setTimeout(function(){var its=0,pih=-1,f=function(){' +
|
'setTimeout(function(){var its=0,pih=-1,f=function(){' +
|
||||||
|
@ -6793,7 +6804,7 @@ window.addEventListener("message", function (e) {
|
||||||
var t = e.data.split(/ /g);
|
var t = e.data.split(/ /g);
|
||||||
if (t[0] == 'iheight') {
|
if (t[0] == 'iheight') {
|
||||||
var el = QS(t[1] + '>iframe');
|
var el = QS(t[1] + '>iframe');
|
||||||
el.style.height = t[2] + 'px';
|
el.style.height = (parseInt(t[2]) + SBH) + 'px';
|
||||||
el.style.visibility = 'unset';
|
el.style.visibility = 'unset';
|
||||||
wfp_debounce.show();
|
wfp_debounce.show();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue