...
|
...
|
@@ -309,6 +309,9 @@ $seniorAttrWrap.on('mouseenter', '.attr', function() { |
|
|
var $this = $(this);
|
|
|
var index = $this.index();
|
|
|
|
|
|
if ($this.hasClass('no-sub')) {
|
|
|
return;
|
|
|
}
|
|
|
$this.addClass('hover').siblings().removeClass('hover');
|
|
|
|
|
|
$seniorSubWrap.children('.senior-sub:eq(' + index + ')').removeClass('hide').siblings().addClass('hide');
|
...
|
...
|
@@ -316,6 +319,10 @@ $seniorAttrWrap.on('mouseenter', '.attr', function() { |
|
|
var $this = $(this),
|
|
|
index = $this.index();
|
|
|
|
|
|
if ($this.hasClass('no-sub')) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
hoveredIndex = index;
|
|
|
|
|
|
seniorHoverTime = setTimeout(function() {
|
...
|
...
|
|