1
0
Fork 0

Compare commits

...

2 Commits

3 changed files with 7 additions and 0 deletions

1
description Normal file
View File

@ -0,0 +1 @@
Choose a player by having everyone touch the screen.

0
offline Normal file
View File

View File

@ -489,6 +489,12 @@ function render() {
requestAnimFrame(animloop);
}
})();
if(navigator.vibrate) {
// Do a vibrate on page load to request vibration permissions in browsers
// that show a confirmation dialog for it.
navigator.vibrate(1);
}
</script>
</body>
</html>