diff options
author | Alib <aliboba@free.fr> | 2010-03-18 21:55:28 +0100 |
---|---|---|
committer | Alib <aliboba@free.fr> | 2010-03-18 21:55:28 +0100 |
commit | 557f20198fb89fe2256edd48f0a6a79801d761c6 (patch) | |
tree | 720843354d302324f4d887cd7ece22c6f89cb035 /js | |
parent | f81b7df03bbd50de903173e7b9c4967f1014ee7b (diff) | |
download | istreamdev-557f20198fb89fe2256edd48f0a6a79801d761c6.tar.gz istreamdev-557f20198fb89fe2256edd48f0a6a79801d761c6.tar.bz2 |
fixed centering loading when scrolled down
Diffstat (limited to 'js')
-rw-r--r-- | js/istreamdev.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/istreamdev.js b/js/istreamdev.js index fa9acb9..cffc610 100644 --- a/js/istreamdev.js +++ b/js/istreamdev.js @@ -70,7 +70,7 @@ $('#home_but').tap(function(event) { function json_start(button) {
$(button).addClass('active');
$('#loader').addClass("loader");
-
+ $('#loader').css("top", window.pageYOffset);
}
function json_complete(destination,effect) {
$('#loader').removeClass("loader");
|