Skip to content
Snippets Groups Projects
Commit 4e5c7f30 authored by mcmlxxix's avatar mcmlxxix
Browse files

insert empty array at specified location instead of initializing characters to frame width

parent 2b395ce2
Branches
Tags
No related merge requests found
......@@ -775,18 +775,12 @@ function Frame(x,y,width,height,attr,parent) {
this.refresh();
}
this.insertLine = function(y) {
var l = undefined;
if(properties.data[y]) {
var l = new Array(this.width);
properties.data.splice(y,0,l);
for(var x=0;x<this.width;x++) {
properties.data[y][x] = new Char();
}
this.refresh();
} else {
if(properties.data[y])
properties.data.splice(y,0,[]);
else
properties.data[y] = [];
}
return l;
this.refresh();
return properties.data[y];
}
this.deleteLine = function(y) {
var l = undefined;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment