Sliding Clock: BUGIFX: build failure due to semi colons
parent
395d7ac62f
commit
1fc4dcde62
|
|
@ -6,12 +6,10 @@ class DateFormatter {
|
|||
* and the date formatDate methid will return the time formated
|
||||
* to the lines of text on the screen
|
||||
*/
|
||||
name(){return "no name";}
|
||||
shortName(){return "no short name"}
|
||||
formatDate(date){
|
||||
return ["no","date","defined"];
|
||||
}
|
||||
rowProperties(row_no){ return {} };
|
||||
name(){ return "no name";}
|
||||
shortName(){ return "no short name" }
|
||||
formatDate(date){ return ["no","date","defined"]; }
|
||||
rowProperties(row_no){ return {}; }
|
||||
formatProperties(){ return {}; }
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -201,7 +201,7 @@ class ShiftText {
|
|||
to_y = this.init_y;
|
||||
|
||||
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);
|
||||
}
|
||||
scrollInFromLeft(txt,to_x){
|
||||
|
|
@ -392,8 +392,7 @@ function init_style() {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
// a list of display rows
|
||||
var row_displays;
|
||||
|
|
|
|||
Loading…
Reference in New Issue