...
|
...
|
@@ -119,4 +119,10 @@ $page.on('touchstart', '.del-icon', function() { |
|
|
}
|
|
|
});
|
|
|
});
|
|
|
}); |
|
|
\ No newline at end of file |
|
|
});
|
|
|
|
|
|
$('.deps').on('touchstart', 'span', function() {
|
|
|
$(this).css('background', '#eee');
|
|
|
}).on('touchend touchcancel', 'span', function() {
|
|
|
$(this).css('background', 'transparent');
|
|
|
}); |
...
|
...
|
|