1 parent d6404d1 commit 839483fCopy full SHA for 839483f
1 file changed
utils/misc/nodejs-terminal/html/webcontainer-fs/webcontainer-fs.html
@@ -231,8 +231,7 @@
231
232
file.dblclick = function(path,filename){
233
debug('file.dblclick',path,filename);
234
- var url = ui.url.value;
235
- load.ui(url,path,filename);
+ //load.ui(url,path,filename);
236
237
}//dblclick
238
@@ -274,7 +273,7 @@
274
273
275
file.download = async function(path){
276
debug('file.download',path);
277
- var uint8 await webcontainer.fs.readfile(path,'uint8');
+ var uint8 = await webcontainer.fs.readfile(path,'uint8');
278
var blob = new Blob([uint8]);
279
return {result:false,blob};
280
0 commit comments