...
|
...
|
@@ -6,6 +6,7 @@ |
|
|
var $ = require('jquery');
|
|
|
|
|
|
var $footer = $('#yoho-footer'),
|
|
|
$yohoPage = $('.yoho-page'),
|
|
|
$header = $('.yoho-header');
|
|
|
|
|
|
function cookie(name) {
|
...
|
...
|
@@ -176,6 +177,13 @@ $header.on('touchstart', 'a', function() { |
|
|
$(this).removeClass('highlight');
|
|
|
});
|
|
|
|
|
|
$yohoPage.on('touchstart', '.tap-hightlight', function() {
|
|
|
$(this).siblings('.tap-hightlight').removeClass('highlight');
|
|
|
$(this).addClass('highlight');
|
|
|
}).on('touchend touchcancel', '.tap-hightlight', function() {
|
|
|
$(this).removeClass('highlight');
|
|
|
});
|
|
|
|
|
|
(function() {
|
|
|
var lastTime = 0,
|
|
|
prefixes = 'webkit moz ms o'.split(' '),
|
...
|
...
|
|