...
|
...
|
@@ -54,6 +54,17 @@ if ($('.left-time').length) { |
|
|
countDown.start();
|
|
|
}
|
|
|
|
|
|
$('body').on('click', function(e) {
|
|
|
if ($(e.target).hasClass('show-package')) {
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
if (!$('.package-list').hasClass('hide')) {
|
|
|
$('.package-list').addClass('hide');
|
|
|
}
|
|
|
});
|
|
|
|
|
|
$('.show-package').on('click', function() {
|
|
|
$(this).next('.package-list').toggleClass('hide');
|
...
|
...
|
|