We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9633970 commit 0565645Copy full SHA for 0565645
1 file changed
utils/misc/nodejs-terminal/v2.0/nodejs-terminal-v2.0.html
@@ -303,18 +303,26 @@
303
}//source
304
305
306
- complete.load = function(file,blob){
307
-
+ function complete(file){
308
309
cur.file = file;
+
310
+ }//complete
311
312
313
+ complete.load = function(file,blob){
314
315
cur.blob = blob;
316
+ complete(file);
317
ui.info();
318
319
}//load
320
321
322
complete.save = function(file,confirm=true){
323
324
325
326
if(confirm){
327
log.green(file.name+' saved');
328
}
0 commit comments