Skip to content

Commit 45ed65f

Browse files
authored
Add 'timeChange' setting to F9 Lander
1 parent 6fda959 commit 45ed65f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

apps/f9lander/settings.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
// initialize with default settings...
88
let settings = {
99
'lightning': false,
10+
'timeChange':false
1011
}
1112
// ...and overwrite them with any saved values
1213
// This way saved values are preserved if a new version adds more settings
@@ -23,11 +24,15 @@
2324
}
2425
}
2526
const menu = {
26-
'': { 'title': 'OpenWind' },
27+
'': { 'title': 'F9 Lander' },
2728
'< Back': back,
2829
'Lightning': {
2930
value: !!settings.lightning,
3031
onchange: save('lightning'),
32+
},
33+
'Time Change': {
34+
value: !!settings.timeChange,
35+
onchange: save('timeChange'),
3136
}
3237
}
3338
E.showMenu(menu);

0 commit comments

Comments
 (0)