mirror of
https://github.com/friendica/friendica
synced 2025-01-27 18:59:47 +00:00
20 lines
427 B
PHP
20 lines
427 B
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* Name: Softy
|
||
|
* Version: Version 0.1
|
||
|
* Author: Alex <alex@friendica.pixelbits.de>
|
||
|
* Maintainer: Alex alex@friendica.pixelbits.de>
|
||
|
* Description: Based on "Test Bubble", optimized for iPad.
|
||
|
* Screenshot: <a href="screenshot.png">Screenshot</a>
|
||
|
*/
|
||
|
|
||
|
$a->page['htmlhead'] .= <<< EOT
|
||
|
<script>
|
||
|
$(document).ready(function() {
|
||
|
|
||
|
$('html').click(function() { $("#nav-notifications-menu" ).hide(); });
|
||
|
});
|
||
|
</script>
|
||
|
EOT;
|