summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xedit_timer.html5
-rwxr-xr-xnew_timer.html5
2 files changed, 10 insertions, 0 deletions
diff --git a/edit_timer.html b/edit_timer.html
index 9b971cc..b940b9f 100755
--- a/edit_timer.html
+++ b/edit_timer.html
@@ -30,6 +30,11 @@ function updateOrientation() {
window.scrollTo(0, 1);
}
+ function sendForm(formid) {
+ var frm;
+ frm = document.getElementById(formid);
+ frm.submit();
+}
</script>
</head>
diff --git a/new_timer.html b/new_timer.html
index 66d9b68..bbede52 100755
--- a/new_timer.html
+++ b/new_timer.html
@@ -30,6 +30,11 @@ function updateOrientation() {
window.scrollTo(0, 1);
}
+ function sendForm(formid) {
+ var frm;
+ frm = document.getElementById(formid);
+ frm.submit();
+}
</script>
</head>