Merge pull request #1075 from MonsterUncle/patch-1

Update element.js
pull/1089/head
贤心 2 years ago committed by GitHub
commit 0ce911a417
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -131,9 +131,9 @@ layui.define('jquery', function(exports){
,filter = parents.attr('lay-filter');
if(li.hasClass(THIS)){
if(li.next()[0]){
if (li.next()[0] && li.next()[0].tagName === 'LI'){
call.tabClick.call(li.next()[0], null, index + 1);
} else if(li.prev()[0]){
} else if (li.prev()[0] && li.prev()[0].tagName === 'LI'){
call.tabClick.call(li.prev()[0], null, index - 1);
}
}

Loading…
Cancel
Save