diff options
author | Alib <aliboba@free.fr> | 2010-03-19 12:38:54 +0100 |
---|---|---|
committer | Alib <aliboba@free.fr> | 2010-03-19 12:38:54 +0100 |
commit | e3bb64ac551beda55d71ee4e2767f8cc8687c169 (patch) | |
tree | 438ab1efb0d9c81a197f4086e5b9852a365b7d84 /js | |
parent | 2bddfdb15fefe775a12806b27510222bd68c626c (diff) | |
download | istreamdev-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.js | 6 |
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();
+ }
})
});
|