forked from FOSS/BangleApps
Merge pull request #2633 from MM2forever/master
[clockcal] fixed typo in settings.js for DRAGDOWNmaster
commit
b53fceaa88
|
@ -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
|
|
@ -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",
|
||||||
|
|
|
@ -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();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue