aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/diabook/theme.php
diff options
context:
space:
mode:
authorzottel <github@zottel.net>2012-04-25 09:07:36 +0200
committerzottel <github@zottel.net>2012-04-25 09:07:36 +0200
commit0116426a0eccc81382a670989032b0a095a65a20 (patch)
treed5e7caacc89d8d7a57c57d10401c9493ec3ed59a /view/theme/diabook/theme.php
parent912e008ded3d439f7779310eb422e4b871a9b63d (diff)
parent5187faa595c52f5c9419da94f42d60d9dfaa1c24 (diff)
downloadvolse-hubzilla-0116426a0eccc81382a670989032b0a095a65a20.tar.gz
volse-hubzilla-0116426a0eccc81382a670989032b0a095a65a20.tar.bz2
volse-hubzilla-0116426a0eccc81382a670989032b0a095a65a20.zip
Merge remote branch 'upstream/master'
Diffstat (limited to 'view/theme/diabook/theme.php')
-rwxr-xr-xview/theme/diabook/theme.php37
1 files changed, 30 insertions, 7 deletions
diff --git a/view/theme/diabook/theme.php b/view/theme/diabook/theme.php
index 269015d0a..073e270ef 100755
--- a/view/theme/diabook/theme.php
+++ b/view/theme/diabook/theme.php
@@ -356,25 +356,48 @@ $(document).ready(function() {
$(this).attr("src",newString+"?"+wmode+"&"+oldString);
}
else $(this).attr("src",ifr_source+"?"+wmode);
+
});
-
- $("a[href=#top]").click(function() {
- $("html, body").animate({scrollTop:0}, "slow");
- return false;
- });
-
});
function yt_iframe() {
-
$("iframe").load(function() {
var ifr_src = $(this).contents().find("body iframe").attr("src");
$("iframe").contents().find("body iframe").attr("src", ifr_src+"&wmode=transparent");
});
};
+
+function scrolldown(){
+ $("html, body").animate({scrollTop:$(document).height()}, "slow");
+ return false;
+ };
+
+function scrolltop(){
+ $("html, body").animate({scrollTop:0}, "slow");
+ return false;
+ };
+
+$(window).scroll(function () {
+
+
+ var scrollInfo = $(window).scrollTop();
+
+ if (scrollInfo <= "900"){
+ $("a#top").attr("id","down");
+ $("a#down").attr("onclick","scrolldown()");
+ $("img#scroll_top_bottom").attr("src","view/theme/diabook/icons/scroll_bottom.png");
+ }
+
+ if (scrollInfo > "900"){
+ $("a#down").attr("id","top");
+ $("a#top").attr("onclick","scrolltop()");
+ $("img#scroll_top_bottom").attr("src","view/theme/diabook/icons/scroll_top.png");
+ }
+
+ });
</script>';