diff --git a/exec/load/inputline.js b/exec/load/inputline.js index 4fe1de0595d3cd02e0984c1eac35e1877dab14fd..5b927e7ccba0f474aaa237ac1bcb9d5008034c3c 100644 --- a/exec/load/inputline.js +++ b/exec/load/inputline.js @@ -3,11 +3,10 @@ if(js.global.getColor == undefined) if(js.global.Frame == undefined) js.global.load(js.global,"frame.js"); -function InputLine(frame,text) { +function InputLine(frame) { /* private properties */ var properties = { frame:undefined, - text:undefined, attr:undefined, cursor:undefined, buffer:[] @@ -20,7 +19,7 @@ function InputLine(frame,text) { cursor_attr:BG_LIGHTGRAY|BLACK, cursor_char:"_", timeout:10, - max_buffer:200, + max_buffer:200 }; /* protected properties */ @@ -108,6 +107,9 @@ function InputLine(frame,text) { if(properties.cursor) properties.cursor.top(); } + this.cycle = function() { + properties.frame.cycle(); + } this.close = function() { properties.frame.close(); } @@ -257,11 +259,9 @@ function InputLine(frame,text) { reset(); return cmd; } - function init(frame,text) { + function init(frame) { if(frame instanceof Frame) properties.frame=frame; - if(text) - properties.text = text; } init.apply(this,arguments); }