We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53a5190 commit 70f17aeCopy full SHA for 70f17ae
1 file changed
utils/misc/nodejs-terminal/html/webcontainer-iframe/webcontainer-iframe.html
@@ -46,7 +46,7 @@
46
<div id=root style='left:0;top:0;width:500px;height:500px'>
47
48
<div id=title>
49
- <div id=icons>
+ <div id=icons style='display:none'>
50
<img id=close>
51
</div>
52
@@ -131,8 +131,11 @@
131
132
var root = $(shadow,'#root');
133
$.drag(root,callback.drag);
134
+ root.onmouseenter = e=>icons.style.display='';
135
+ root.onmouseleave = e=>icons.style.display='none';
136
137
icons = $(shadow,'#icons');
138
+
139
ui.url = $(shadow,'#url');
140
ui.url.onkeyup = ku.url;
141
0 commit comments