6-vibrator.js - bitreich-www - the bitreich www website generator | |
git clone git://bitreich.org/bitreich-www/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hh… | |
Log | |
Files | |
Refs | |
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 |