bars/js/controlador.js
2014-04-14 19:21:32 +02:00

17 lines
348 B
JavaScript

/* 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();
}
});