Closed dallasbpeters closed 11 years ago
For some reason my alert fires twice. Any ideas? I can post more code if this is not enough information.
$$('.verse-container').tap(function() { $$(this).addClass('tapped'); alert("tap"); });
figured it out.
$$('.verse-container').on('tap', this.tapverse);
... tapverse: function(){ $$(this).addClass('tapped'); }
For some reason my alert fires twice. Any ideas? I can post more code if this is not enough information.