Showing
2 changed files
with
7 additions
and
1 deletions
@@ -73,3 +73,9 @@ $action.on('touchend', '.del', function() { | @@ -73,3 +73,9 @@ $action.on('touchend', '.del', function() { | ||
73 | $confim.fadeIn(); | 73 | $confim.fadeIn(); |
74 | return false; | 74 | return false; |
75 | }); | 75 | }); |
76 | + | ||
77 | +$action.on('touchstart', 'a,span', function() { | ||
78 | + $(this).css('background', '#eee'); | ||
79 | +}).on('touchend touchcancel', 'a,span', function() { | ||
80 | + $(this).css('background', 'transparent'); | ||
81 | +}); |
-
Please register or login to post a comment