Fix enable delete on login
This commit is contained in:
@@ -260,11 +260,11 @@ Frame.prototype.parse = function(text) {
|
||||
f = 39;
|
||||
b = 49;
|
||||
|
||||
// Forground Color
|
||||
// Forground Color
|
||||
} else if (csi[num] >= 30 && csi[num] <= 39) {
|
||||
f = csi[num];
|
||||
|
||||
// Background Color
|
||||
// Background Color
|
||||
} else if (csi[num] >= 40 && csi[num] <= 49) {
|
||||
b = num;
|
||||
}
|
||||
@@ -352,6 +352,7 @@ Frame.prototype.parse = function(text) {
|
||||
this.frame_fields.push({
|
||||
ftype: fieldtype,
|
||||
flength: fieldlen,
|
||||
fchar: fieldchar,
|
||||
r: r,
|
||||
c: c,
|
||||
attribute: {i:i,f:f,b:b},
|
||||
|
Reference in New Issue
Block a user