Skip to content

Commit a7e8f39

Browse files
committed
Fix clock picker window does not start in 0 but 1 munute/hour
1 parent acd218b commit a7e8f39

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

glowdash/glowdash.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ var CommSSEHost string = ""
142142
var CommSSEPort int = 8085
143143
var BackgroudDevQueryNetDialerTimeout time.Duration = time.Duration(1200) * time.Millisecond
144144
var BackgroudDevQueryNetKeepaliveTimeout time.Duration = time.Duration(1200) * time.Millisecond
145-
var AssetVer string = "113"
145+
var AssetVer string = "114"
146146

147147
var Panels []PanelInterface
148148
var Pages []PageInterface

static/glowdash.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ function clockbutton_value_handle_click(overlay_container_id,mainId,targetId,hm)
356356
max = 23;
357357
if(hm == "min")
358358
max = 59;
359-
for(i = 1 ; i <= max ; i++) {
359+
for(i = 0 ; i <= max ; i++) {
360360
ophh += "<tr><td><div class=\"overlay-select-button\" " +
361361
"data-value=\""+i.toString()+"\" "+
362362
"data-targetid=\""+targetId+"\">"+

0 commit comments

Comments
 (0)