bars/js/controlador.js

17 lines
348 B
JavaScript
Raw Normal View History

2014-04-14 19:21:32 +02:00
/* Quita delay de smartphones al hacer click */
window.addEventListener('load', function () {
FastClick.attach(document.body);
}, false);
$('.barras').click(function() {
$barra = $(this);
if(bJugando) gestionarBarra($barra);
});
$('#botonEmpezar').click(function() {
if(!bEmpezada) {
iniciarPartida();
} else {
reiniciarPartida();
}
});