Skip to content

Commit 839483f

Browse files
save file
1 parent d6404d1 commit 839483f

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

utils/misc/nodejs-terminal/html/webcontainer-fs/webcontainer-fs.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,7 @@
231231

232232
file.dblclick = function(path,filename){
233233
debug('file.dblclick',path,filename);
234-
var url = ui.url.value;
235-
load.ui(url,path,filename);
234+
//load.ui(url,path,filename);
236235

237236
}//dblclick
238237

@@ -274,7 +273,7 @@
274273

275274
file.download = async function(path){
276275
debug('file.download',path);
277-
var uint8 await webcontainer.fs.readfile(path,'uint8');
276+
var uint8 = await webcontainer.fs.readfile(path,'uint8');
278277
var blob = new Blob([uint8]);
279278
return {result:false,blob};
280279

0 commit comments

Comments
 (0)