msudenver / RowdyTheRoadRunner

http://msudenver.edu/
0 stars 1 forks source link

Add fastclick.js for removing the 300ms delay on mobile devices #56

Closed dviramontes closed 10 years ago

dviramontes commented 10 years ago

usage: <script type='application/javascript' src='/path/to/fastclick.js'></script> then attach to body(recommended) or just the nav divs:

window.addEventListener('load', function() {
    FastClick.attach(document.body);
}, false);

lib: https://github.com/ftlabs/fastclick

dviramontes commented 10 years ago

Deferred.