...
|
...
|
@@ -302,7 +302,7 @@ function bindExpressEvent() { |
|
|
}
|
|
|
|
|
|
$('.express-info').each(function(idx, el) {
|
|
|
if(!$(el).hasClass('hide')) {
|
|
|
if (!$(el).hasClass('hide')) {
|
|
|
$(el).addClass('hide');
|
|
|
}
|
|
|
});
|
...
|
...
|
@@ -314,7 +314,7 @@ function bindExpressEvent() { |
|
|
var $info = $this.find('.express-info');
|
|
|
|
|
|
$('.express-info').each(function(idx, el) {
|
|
|
if(!$(el).hasClass('hide')) {
|
|
|
if (!$(el).hasClass('hide')) {
|
|
|
$(el).addClass('hide');
|
|
|
}
|
|
|
});
|
...
|
...
|
|