Showing
1 changed file
with
6 additions
and
0 deletions
@@ -120,3 +120,9 @@ $page.on('touchstart', '.del-icon', function() { | @@ -120,3 +120,9 @@ $page.on('touchstart', '.del-icon', function() { | ||
120 | }); | 120 | }); |
121 | }); | 121 | }); |
122 | }); | 122 | }); |
123 | + | ||
124 | +$('.deps').on('touchstart', 'span', function() { | ||
125 | + $(this).css('background', '#eee'); | ||
126 | +}).on('touchend touchcancel', 'span', function() { | ||
127 | + $(this).css('background', 'transparent'); | ||
128 | +}); |
-
Please register or login to post a comment