Merge branch 'develop' of https://git.trustie.net/jacknudt/trustieforge into develop

This commit is contained in:
cxt 2016-09-30 17:12:47 +08:00
commit 1cf3c2cd48
1 changed files with 4 additions and 4 deletions

View File

@ -178,14 +178,14 @@
$(id).submit();
}
$(".sum_score_tip").each(function(){
$(".sy_new_table tr").each(function(){
$(this).mouseenter(function(){
$(".sy_tips_box_inner").hide();
$(this).next().stop();
$(this).next().show();
$(this).children().eq(6).children().eq(1).stop();
$(this).children().eq(6).children().eq(1).show();
});
$(this).mouseleave(function(){
$(this).next().delay(500).hide(0);
$(this).children().eq(6).children().eq(1).delay(500).hide(0);
});
});