aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/diabook/theme.php
diff options
context:
space:
mode:
authorTobias Hößl <tobias@hoessl.eu>2012-03-13 18:34:15 +0000
committerTobias Hößl <tobias@hoessl.eu>2012-03-13 18:34:15 +0000
commit43430ef561a004aca8a9a28449e51e3885d39a9a (patch)
tree018927c54c16f68aeae7153c81c404d3e9cbbc7d /view/theme/diabook/theme.php
parent59766b944c9ea3a45b1d7e8593f7bb5d4a0b8445 (diff)
parent5a4167646553e589cf9647c0e0d0446e3f5fd672 (diff)
downloadvolse-hubzilla-43430ef561a004aca8a9a28449e51e3885d39a9a.tar.gz
volse-hubzilla-43430ef561a004aca8a9a28449e51e3885d39a9a.tar.bz2
volse-hubzilla-43430ef561a004aca8a9a28449e51e3885d39a9a.zip
Merge branch 'master' of git://github.com/friendica/friendica
Diffstat (limited to 'view/theme/diabook/theme.php')
-rwxr-xr-xview/theme/diabook/theme.php18
1 files changed, 17 insertions, 1 deletions
diff --git a/view/theme/diabook/theme.php b/view/theme/diabook/theme.php
index 5a1828ad7..5d3c2906d 100755
--- a/view/theme/diabook/theme.php
+++ b/view/theme/diabook/theme.php
@@ -12,6 +12,7 @@ $a->theme_info = array(
);
$a->page['htmlhead'] .= <<< EOT
+
<script>
//contacts
@@ -63,5 +64,20 @@ $('html').click(function() {
$('#nav-site-linkmenu').click(function(event){
event.stopPropagation();
});
-</script>
+ //appsmenu
+ $('html').click(function() {
+ $('#nav-apps-link').removeClass('selected');
+ document.getElementById( "nav-apps-menu" ).style.display = "none";
+ });
+
+ $('#nav-apps-link').click(function(event){
+ event.stopPropagation();
+ });
+
+ $(function() {
+ $('a.lightbox').fancybox(); // Select all links with lightbox class
+});
+
+
+ </script>
EOT;