click anywhere to close notifications -> zeros and bubbles

This commit is contained in:
friendica 2012-03-12 20:21:32 -07:00
parent e12706e825
commit bf7425c591
8 changed files with 39 additions and 0 deletions

View file

@ -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;