Sliding Clock: BUGIFX: build failure due to semi colons

master
lu713691 2022-07-31 00:17:24 +01:00
parent 395d7ac62f
commit 1fc4dcde62
2 changed files with 6 additions and 9 deletions

View File

@ -6,12 +6,10 @@ class DateFormatter {
* and the date formatDate methid will return the time formated * and the date formatDate methid will return the time formated
* to the lines of text on the screen * to the lines of text on the screen
*/ */
name(){return "no name";} name(){ return "no name";}
shortName(){return "no short name"} shortName(){ return "no short name" }
formatDate(date){ formatDate(date){ return ["no","date","defined"]; }
return ["no","date","defined"]; rowProperties(row_no){ return {}; }
}
rowProperties(row_no){ return {} };
formatProperties(){ return {}; } formatProperties(){ return {}; }
} }

View File

@ -201,7 +201,7 @@ class ShiftText {
to_y = this.init_y; to_y = this.init_y;
this.setTextPosition(txt, this.init_x, g.getHeight() + 2*this.font_size); this.setTextPosition(txt, this.init_x, g.getHeight() + 2*this.font_size);
console.log("scrollInFromBottom y:" + this.y + "->" + to_y + " -> " + txt) //console.log("scrollInFromBottom y:" + this.y + "->" + to_y + " -> " + txt)
this.moveTo(this.init_x,to_y); this.moveTo(this.init_x,to_y);
} }
scrollInFromLeft(txt,to_x){ scrollInFromLeft(txt,to_x){
@ -392,8 +392,7 @@ function init_style() {
} }
} }
} }
}
};
// a list of display rows // a list of display rows
var row_displays; var row_displays;