Fix Merge Conflicts.

This commit is contained in:
Michael Teeuw
2017-03-17 14:32:01 +01:00
parent 15b19925f2
commit 4aec39df7a
3 changed files with 5 additions and 2 deletions

View File

@@ -16,6 +16,7 @@ Module.register("clock",{
showPeriodUpper: false,
clockBold: false,
showDate: true,
dateFormat: "dddd, LL",
/* specific to the analog clock */
analogSize: "200px",
@@ -87,7 +88,7 @@ Module.register("clock",{
}
if(this.config.showDate){
dateWrapper.innerHTML = now.format("dddd, LL");
dateWrapper.innerHTML = now.format(this.config.dateFormat);
}
timeWrapper.innerHTML = timeString;
secondsWrapper.innerHTML = now.format("ss");