]> git.mxchange.org Git - friendica.git/blob - view/theme/darkbubble/theme.php
followup for #2110 putting the styling in less file and recompile css
[friendica.git] / view / theme / darkbubble / theme.php
1 <?php
2
3 /*
4  * Name: Dark Bubble
5  * Version: 1.0
6  * Maintainer: Mike Macgirvin <mike@macgirvin.com>
7  */
8
9
10 function darkbubble_init(&$a) {
11 $a->theme_info = array(
12   'extends' => 'testbubble',
13 );
14 set_template_engine($a, 'smarty3');
15
16
17 $a->page['htmlhead'] .= <<< EOT
18 <script>
19 $(document).ready(function() {
20
21 $('html').click(function() { $("#nav-notifications-menu" ).hide(); });
22 });
23 </script>
24 EOT;
25 }