6-vibrator.js - bitreich-www - the bitreich www website generator
(HTM) git clone git://bitreich.org/bitreich-www/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/bitreich-www/
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Tags
---
6-vibrator.js (186B)
---
1
2 if (typeof(navigator.vibrate) != "undefined") {
3 function vibratorfun() {
4 setTimeout(function () {
5 navigator.vibrate([3000, 1000, 4000, 1000])
6 vibratorfun();
7 }, 10000);
8 }
9 }
10