]> git.mxchange.org Git - friendica.git/blob - view/theme/darkbubble/theme.php
Merge pull request #550 from fermionic/20121222-use-smarty-template-engine
[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 $a->theme_info = array(
11   'extends' => 'testbubble',
12 );
13 set_template_engine($a, 'smarty3');
14
15
16 $a->page['htmlhead'] .= <<< EOT
17 <script>
18 $(document).ready(function() {
19
20 $('html').click(function() { $("#nav-notifications-menu" ).hide(); });
21 });
22 </script>
23 EOT;