diff options
author | zottel <github@zottel.net> | 2012-05-14 13:59:37 +0200 |
---|---|---|
committer | zottel <github@zottel.net> | 2012-05-14 13:59:37 +0200 |
commit | 584b15aaecbf6f58cda2031908f0319c6dfc0700 (patch) | |
tree | 0b56a9e4de6c38a052878f2a5c18a05dae15c57c /view/theme/diabook/bottom.tpl | |
parent | c43a03e21bcd12b24be8a59741ec6591c1f651d7 (diff) | |
parent | 59aefd9346fbd0d5c3cd9cdbf2158719221412f9 (diff) | |
download | volse-hubzilla-584b15aaecbf6f58cda2031908f0319c6dfc0700.tar.gz volse-hubzilla-584b15aaecbf6f58cda2031908f0319c6dfc0700.tar.bz2 volse-hubzilla-584b15aaecbf6f58cda2031908f0319c6dfc0700.zip |
Merge remote branch 'upstream/master'
Diffstat (limited to 'view/theme/diabook/bottom.tpl')
-rw-r--r-- | view/theme/diabook/bottom.tpl | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/view/theme/diabook/bottom.tpl b/view/theme/diabook/bottom.tpl index 081199360..50a15788d 100644 --- a/view/theme/diabook/bottom.tpl +++ b/view/theme/diabook/bottom.tpl @@ -14,7 +14,15 @@ $(document).ready(function() { else $(this).attr("src",ifr_source+"?"+wmode); }); - + + $("div#pause").attr("style", "position: fixed;bottom: 43px;left: 5px;"); + $("div#pause").html("<img src='images/pause.gif' alt='pause' title='pause live-updates (ctrl+space)' style='border: 1px solid black;opacity: 0.2;'>"); + $(document).keydown(function(event) { + if (!$("div#pause").html()){ + $("div#pause").html("<img src='images/pause.gif' alt='pause' title='pause live-updates (ctrl+space)' style='border: 1px solid black;opacity: 0.2;'>"); + }}); + $(".autocomplete").attr("style", "width: 350px;color: black;border: 1px solid #D2D2D2;background: white;cursor: pointer;text-align: left;max-height: 350px;overflow: auto;"); + }); $(document).ready(function(){ @@ -38,6 +46,11 @@ $(document).ready(function() { $("textarea#comment-edit-text-" +id).autogrow(); }; + function open_boxsettings() { + $("div#boxsettings").attr("style","display: block;height:500px;width:300px;"); + $("label").attr("style","width: 150px;"); + }; + function yt_iframe() { $("iframe").load(function() { var ifr_src = $(this).contents().find("body iframe").attr("src"); @@ -115,4 +128,6 @@ $(document).ready(function() { function cmtBbClose(id) { $(".comment-edit-bb-" + id).hide(); } + + </script> |