diff options
author | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2012-03-13 06:50:14 +0100 |
---|---|---|
committer | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2012-03-13 06:50:14 +0100 |
commit | 5bae7159cc7b182e40229bb6d547ccf303eb4282 (patch) | |
tree | 0c49a617c83d11e645b6df2bea5bfcc1ccf7d093 /view/theme/diabook-blue/theme.php | |
parent | 30f5c3a9eb5dfa795771be86b3b0fe265037f3e9 (diff) | |
parent | bf7425c591de360a97c37544f777d7d69791420c (diff) | |
download | volse-hubzilla-5bae7159cc7b182e40229bb6d547ccf303eb4282.tar.gz volse-hubzilla-5bae7159cc7b182e40229bb6d547ccf303eb4282.tar.bz2 volse-hubzilla-5bae7159cc7b182e40229bb6d547ccf303eb4282.zip |
Merge branch 'master' of https://github.com/friendica/friendica
Diffstat (limited to 'view/theme/diabook-blue/theme.php')
-rwxr-xr-x | view/theme/diabook-blue/theme.php | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/view/theme/diabook-blue/theme.php b/view/theme/diabook-blue/theme.php index 0a20c9fbc..e5aa710c7 100755 --- a/view/theme/diabook-blue/theme.php +++ b/view/theme/diabook-blue/theme.php @@ -1,8 +1,8 @@ <?php /* - * Name: Diabook - * Description: Diabook: report bugs and request here: http://pad.toktan.org/p/diabook or contact me : thomas_bierey@friendica.eu + * Name: Diabook-blue + * Description: Diabook-blue: report bugs and request here: http://pad.toktan.org/p/diabook or contact me : thomas_bierey@friendica.eu * Version: * Author: */ @@ -12,7 +12,9 @@ $a->theme_info = array( ); $a->page['htmlhead'] .= <<< EOT + <script> + //contacts $('html').click(function() { $('#nav-contacts-linkmenu').removeClass('selected'); @@ -62,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; |