Friendica Communications Platform
(please note that this is a clone of the repository at github, issues are handled there)
https://friendi.ca
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
395 B
25 lines
395 B
<?php |
|
|
|
/* |
|
* Name: Dark Bubble |
|
* Version: 1.0 |
|
* Maintainer: Mike Macgirvin <mike@macgirvin.com> |
|
*/ |
|
|
|
|
|
function darkbubble_init(&$a) { |
|
$a->theme_info = array( |
|
'extends' => 'testbubble', |
|
); |
|
set_template_engine($a, 'smarty3'); |
|
|
|
|
|
$a->page['htmlhead'] .= <<< EOT |
|
<script> |
|
$(document).ready(function() { |
|
|
|
$('html').click(function() { $("#nav-notifications-menu" ).hide(); }); |
|
}); |
|
</script> |
|
EOT; |
|
}
|
|
|