fix error
This commit is contained in:
parent
1629bf76f1
commit
32678bbb84
|
|
@ -16,8 +16,8 @@
|
||||||
current_text = (current_text > total_texts ? 0 : current_text);
|
current_text = (current_text > total_texts ? 0 : current_text);
|
||||||
last_text = (current_text == 0 ? total_texts : current_text - 1);
|
last_text = (current_text == 0 ? total_texts : current_text - 1);
|
||||||
speed = main_div.find("ul li").eq(current_text).find("> a").eq(0).attr('speed');
|
speed = main_div.find("ul li").eq(current_text).find("> a").eq(0).attr('speed');
|
||||||
main_div.find("ul li").eq(last_text).slideUp({duration: 500, queue: true});
|
main_div.find("ul li").eq(last_text).stop(true, true).slideUp({duration: 500, queue: true});
|
||||||
main_div.find("ul li").eq(current_text).slideDown({duration: 500, queue: true});
|
main_div.find("ul li").eq(current_text).stop(true, true).slideDown({duration: 500, queue: true});
|
||||||
current_text++;
|
current_text++;
|
||||||
if(total_texts > 0){
|
if(total_texts > 0){
|
||||||
if(window["{{subpart-id}}_time_out_id"])
|
if(window["{{subpart-id}}_time_out_id"])
|
||||||
|
|
@ -28,4 +28,4 @@
|
||||||
}
|
}
|
||||||
textTransform();
|
textTransform();
|
||||||
})();
|
})();
|
||||||
</script>
|
</script>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue