summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorAlib <aliboba@free.fr>2010-03-19 12:38:54 +0100
committerAlib <aliboba@free.fr>2010-03-19 12:38:54 +0100
commite3bb64ac551beda55d71ee4e2767f8cc8687c169 (patch)
tree438ab1efb0d9c81a197f4086e5b9852a365b7d84 /js
parent2bddfdb15fefe775a12806b27510222bd68c626c (diff)
downloadistreamdev-e3bb64ac551beda55d71ee4e2767f8cc8687c169.tar.gz
istreamdev-e3bb64ac551beda55d71ee4e2767f8cc8687c169.tar.bz2
fixed animation bug with lot of elements when back
Diffstat (limited to 'js')
-rw-r--r--js/istreamdev.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/js/istreamdev.js b/js/istreamdev.js
index 1243ebe..ad6563d 100644
--- a/js/istreamdev.js
+++ b/js/istreamdev.js
@@ -95,6 +95,12 @@ $('div').bind('pageAnimationEnd', function(event, info){
if (info.direction == 'in') {
$('li[rel="toggle"]').show();
}
+
+ })
+$('div').bind('pageAnimationStart', function(event, info){
+ if (info.direction == 'in') {
+ $('li[rel="toggle"]').hide();
+ }
})
});