diff options
author | Alib <aliboba@free.fr> | 2010-07-05 17:06:58 +0200 |
---|---|---|
committer | Alib <aliboba@free.fr> | 2010-07-05 17:06:58 +0200 |
commit | 73d75c718b5017708065d0c39c73cded75062dac (patch) | |
tree | 4b37764a45ccc6ece48cc7606e248fd0477f099a /js/istreamdev.js | |
parent | ebddc115d8243b31b7309b1aebd45ceda4132690 (diff) | |
download | istreamdev-73d75c718b5017708065d0c39c73cded75062dac.tar.gz istreamdev-73d75c718b5017708065d0c39c73cded75062dac.tar.bz2 |
fix long path for pid checks
Diffstat (limited to 'js/istreamdev.js')
-rw-r--r-- | js/istreamdev.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/js/istreamdev.js b/js/istreamdev.js index 09c3968..e5863c1 100644 --- a/js/istreamdev.js +++ b/js/istreamdev.js @@ -151,12 +151,13 @@ function reinitDivs() { $(document).ready(function(e){
$('div').bind('pageAnimationEnd', function(event, info){
if (info.direction == 'in') {
- $('#loader').removeClass("loader");
+ //$('#loader').removeClass("loader");
$(this).find('li[rel="toggle"]').show();
}
})
$('div').bind('pageAnimationStart', function(event, info){
+ $('#loader').removeClass("loader");
if (info.direction == 'in') {
$(this).find('li[rel="toggle"]').hide();
}
|