]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/darkbubble/theme.php
Merge pull request #1098 from Beanow/release/profile-editor-improvements
[friendica.git] / view / theme / darkbubble / theme.php
old mode 100755 (executable)
new mode 100644 (file)
index 326c98b..475d4e6
@@ -1,4 +1,25 @@
 <?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;
+}