aboutsummaryrefslogtreecommitdiff
path: root/content/logger.html
diff options
context:
space:
mode:
Diffstat (limited to 'content/logger.html')
-rw-r--r--content/logger.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/content/logger.html b/content/logger.html
index 4c0700a..e187699 100644
--- a/content/logger.html
+++ b/content/logger.html
@@ -35,6 +35,12 @@
35 <td>Heading</td> 35 <td>Heading</td>
36 <td id="value-heading"></td> 36 <td id="value-heading"></td>
37 </tr> 37 </tr>
38 <tr>
39 <td>Vibrate</td>
40 <td>
41 <input id="input-vibrate" type="checkbox" name="vibrate" value="false">
42 </td>
43 </tr>
38 </tbody> 44 </tbody>
39 </table> 45 </table>
40 <div class="grid"> 46 <div class="grid">
@@ -119,6 +125,9 @@
119 } 125 }
120 126
121 logger_state.inprogress = true; 127 logger_state.inprogress = true;
128 if (document.getElementById("input-vibrate").checked) {
129 navigator.vibrate(200);
130 }
122 log_post(); 131 log_post();
123 update_ui(); 132 update_ui();
124 } 133 }