diff options
author | Simon L'nu <simon.lnu@gmail.com> | 2012-03-13 00:25:20 -0400 |
---|---|---|
committer | Simon L'nu <simon.lnu@gmail.com> | 2012-03-13 00:25:20 -0400 |
commit | 203fa94e1794d076894f8985bd60622784aa9156 (patch) | |
tree | 0c49a617c83d11e645b6df2bea5bfcc1ccf7d093 /view/theme/darkbubble | |
parent | 5a1e2c32fe4a36b1dbbaa6b224c8ced6cb3358c4 (diff) | |
parent | bf7425c591de360a97c37544f777d7d69791420c (diff) | |
download | volse-hubzilla-203fa94e1794d076894f8985bd60622784aa9156.tar.gz volse-hubzilla-203fa94e1794d076894f8985bd60622784aa9156.tar.bz2 volse-hubzilla-203fa94e1794d076894f8985bd60622784aa9156.zip |
Merge branch 'master', remote-tracking branch 'remotes/upstream/master'
* remotes/upstream/master:
click anywhere to close notifications -> zeros and bubbles
revup
fix css
use fancybox instead of lightbox
fixes
* master:
Diffstat (limited to 'view/theme/darkbubble')
-rwxr-xr-x | view/theme/darkbubble/theme.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/view/theme/darkbubble/theme.php b/view/theme/darkbubble/theme.php index 326c98bbd..053730c21 100755 --- a/view/theme/darkbubble/theme.php +++ b/view/theme/darkbubble/theme.php @@ -1,4 +1,22 @@ <?php + +/* + * Name: Dark Bubble + * Version: 1.0 + * Maintainer: Mike Macgirvin <mike@macgirvin.com> + */ + + $a->theme_info = array( 'extends' => 'testbubble', ); + + +$a->page['htmlhead'] .= <<< EOT +<script> +$(document).ready(function() { + +$('html').click(function() { $("#nav-notifications-menu" ).hide(); }); +}); +</script> +EOT; |