Remove automatic animation option because it doesn't work (#49)
This commit is contained in:
parent
3238d1aa35
commit
49bddc1b62
@ -732,7 +732,7 @@ var routes = [
|
|||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
value: "auto",
|
value: "auto",
|
||||||
label: "Auto/System",
|
label: "Auto",
|
||||||
selected: getStorage("apptheme") == null || getStorage("apptheme") == "auto"
|
selected: getStorage("apptheme") == null || getStorage("apptheme") == "auto"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -754,18 +754,18 @@ var routes = [
|
|||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
value: "auto",
|
value: "auto",
|
||||||
label: "Auto",
|
label: "On",
|
||||||
selected: getStorage("animation") == null || getStorage("animation") == "auto"
|
selected: getStorage("animation") == null || getStorage("animation") == "auto" || getStorage("animation") == "on"
|
||||||
},
|
},
|
||||||
|
// {
|
||||||
|
// value: "on",
|
||||||
|
// label: "On",
|
||||||
|
// selected: getStorage("animation") == "on"
|
||||||
|
// },
|
||||||
{
|
{
|
||||||
value: "off",
|
value: "off",
|
||||||
label: "Off",
|
label: "Off",
|
||||||
selected: getStorage("animation") == "off"
|
selected: getStorage("animation") == "off"
|
||||||
},
|
|
||||||
{
|
|
||||||
value: "on",
|
|
||||||
label: "On",
|
|
||||||
selected: getStorage("animation") == "on"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user