mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-06 06:03:23 +00:00
YosysJS firefox fixes
This commit is contained in:
parent
e0e6d130cd
commit
78b991d760
2 changed files with 5 additions and 5 deletions
|
@ -137,8 +137,11 @@ var YosysJS = new function() {
|
|||
span.textContent = text + "\n";
|
||||
span.style.fontFamily = 'monospace';
|
||||
span.style.whiteSpace = 'pre';
|
||||
doc.body.appendChild(span);
|
||||
ys.window.scrollTo(0, doc.body.scrollHeight)
|
||||
doc.firstChild.appendChild(span);
|
||||
if (doc.body)
|
||||
ys.window.scrollTo(0, doc.body.scrollHeight);
|
||||
else
|
||||
ys.window.scrollBy(0, 100);
|
||||
}
|
||||
|
||||
ys.prompt = function() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue