Skip to content

Commit d2f8d17

Browse files
committed
remove more unused variables and functions from previous versions
1 parent 3e24a5c commit d2f8d17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/dsky_clock/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ function setWORD(id,label){
172172
layout.clear(layout[id]);
173173
let data='--';
174174
if (!isNaN(label)) {
175-
let data=String(String(label).toString(16)).toUpperCase().padStart(2,'0').substring(0,2);
175+
data=String(String(label).toString(16)).toUpperCase().padStart(2,'0').substring(0,2);
176176
}
177177
// print(id, data); //debug
178178
layout[id].label=data;

0 commit comments

Comments
 (0)