]> git.mxchange.org Git - friendica.git/blob - view/theme/testbubble/theme.php
Merge pull request #2045 from annando/1511-dirfind-addr
[friendica.git] / view / theme / testbubble / theme.php
1 <?php
2
3 /*
4  * Name: Test Bubble
5  * Version: 1.1
6  * Author: Anne Walk
7  * Author: Devlon Duthied
8  * Maintainer: Mike Macgirvin <mike@macgirvin.com>
9  */
10
11
12 function testbubble_init(&$a) {
13 set_template_engine($a, 'smarty3');
14
15 $a->page['htmlhead'] .= <<< EOT
16 <script>
17 $(document).ready(function() {
18
19 $('html').click(function() { $("#nav-notifications-menu" ).hide(); });
20 });
21 </script>
22 EOT;
23 }