提交 e61814ad 编写于 作者: M Matt Bierner

Small doc clearnup

上级 f3653925
...@@ -80,7 +80,7 @@ document.addEventListener("DOMContentLoaded", function (event) { ...@@ -80,7 +80,7 @@ document.addEventListener("DOMContentLoaded", function (event) {
}); });
// update iframe-contents // update iframe-contents
ipcRenderer.on('content', function(_event, value) { ipcRenderer.on('content', function (_event, value) {
const text = value.join('\n'); const text = value.join('\n');
const newDocument = new DOMParser().parseFromString(text, 'text/html'); const newDocument = new DOMParser().parseFromString(text, 'text/html');
...@@ -134,16 +134,17 @@ document.addEventListener("DOMContentLoaded", function (event) { ...@@ -134,16 +134,17 @@ document.addEventListener("DOMContentLoaded", function (event) {
return false; return false;
}; };
// workaround for https://github.com/Microsoft/vscode/issues/12865
// check new scrollTop and reset if neccessary
newFrame.contentWindow.addEventListener('DOMContentLoaded', function (e) { newFrame.contentWindow.addEventListener('DOMContentLoaded', function (e) {
const contentDocument = e.target; const contentDocument = e.target;
if (contentDocument.body) { if (contentDocument.body) {
// Workaround for https://github.com/Microsoft/vscode/issues/12865
// check new scrollTop and reset if neccessary
if (scrollTop !== contentDocument.body.scrollTop) { if (scrollTop !== contentDocument.body.scrollTop) {
contentDocument.body.scrollTop = scrollTop; contentDocument.body.scrollTop = scrollTop;
} }
// bubble out link-clicks // Bubble out link clicks
contentDocument.body.addEventListener('click', handleInnerClick); contentDocument.body.addEventListener('click', handleInnerClick);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册