1
0
Fork 0

Merge pull request #2633 from MM2forever/master

[clockcal] fixed typo in settings.js for DRAGDOWN
master
Gordon Williams 2023-03-07 09:22:01 +00:00 committed by GitHub
commit b53fceaa88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -5,3 +5,4 @@
0.05: Improved colors (connected vs disconnected) 0.05: Improved colors (connected vs disconnected)
0.06: Tell clock widgets to hide. 0.06: Tell clock widgets to hide.
0.07: Convert Yes/No On/Off in settings to checkboxes 0.07: Convert Yes/No On/Off in settings to checkboxes
0.08: Fixed typo in settings.js for DRAGDOWN to make option work

View File

@ -1,7 +1,7 @@
{ {
"id": "clockcal", "id": "clockcal",
"name": "Clock & Calendar", "name": "Clock & Calendar",
"version": "0.07", "version": "0.08",
"description": "Clock with Calendar", "description": "Clock with Calendar",
"readme":"README.md", "readme":"README.md",
"icon": "app.png", "icon": "app.png",

View File

@ -93,7 +93,7 @@
value: actions.indexOf(settings.DRAGDOWN), value: actions.indexOf(settings.DRAGDOWN),
format: v => actions[v], format: v => actions[v],
onchange: v => { onchange: v => {
settings.DRGDOWN = actions[v]; settings.DRAGDOWN = actions[v];
writeSettings(); writeSettings();
} }
}, },