This website works better with JavaScript.
Home
Explore
Help
Sign In
mh
/
mhsw-espurna
Watch
1
Star
0
Fork
0
Code
Releases
0
Activity
Browse Source
Fix delete last scheduler
i18n
Xose Pérez
6 years ago
parent
757b350ca9
commit
006c8f2380
1 changed files
with
5 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-1
code/html/custom.js
+ 5
- 1
code/html/custom.js
View File
@ -147,7 +147,11 @@ function getData(form) {
}
)
;
// Post process
if
(
"schSwitch"
in
data
)
data
[
"schSwitch"
]
.
push
(
0xFF
)
;
if
(
"schSwitch"
in
data
)
{
data
[
"schSwitch"
]
.
push
(
0xFF
)
;
}
else
{
data
[
"schSwitch"
]
=
[
0xFF
]
;
}
return
data
;
Write
Preview
Loading…
Cancel
Save