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: [
|
||||
{
|
||||
value: "auto",
|
||||
label: "Auto/System",
|
||||
label: "Auto",
|
||||
selected: getStorage("apptheme") == null || getStorage("apptheme") == "auto"
|
||||
},
|
||||
{
|
||||
@ -754,18 +754,18 @@ var routes = [
|
||||
options: [
|
||||
{
|
||||
value: "auto",
|
||||
label: "Auto",
|
||||
selected: getStorage("animation") == null || getStorage("animation") == "auto"
|
||||
label: "On",
|
||||
selected: getStorage("animation") == null || getStorage("animation") == "auto" || getStorage("animation") == "on"
|
||||
},
|
||||
// {
|
||||
// value: "on",
|
||||
// label: "On",
|
||||
// selected: getStorage("animation") == "on"
|
||||
// },
|
||||
{
|
||||
value: "off",
|
||||
label: "Off",
|
||||
selected: getStorage("animation") == "off"
|
||||
},
|
||||
{
|
||||
value: "on",
|
||||
label: "On",
|
||||
selected: getStorage("animation") == "on"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user