]> git.mxchange.org Git - friendica.git/blob - view/theme/darkzero/theme.php
Merge branch 'master' of github.com:annando/friendica
[friendica.git] / view / theme / darkzero / theme.php
1 <?php
2
3 /*
4  * Name: Darkzero
5  * Version: 1.0
6  * Author: Fabio Communi <fabrix.xm@gmail.com>
7  * Maintainer: Fabio Communi <fabrix.xm@gmail.com>
8  * Maintainer: Mike Macgirvin <mike@macgirvin.com>
9  */
10
11 $a->theme_info = array(
12   'extends' => 'duepuntozero',
13 );
14
15 function darkzero_init(&$a) {
16 $a->page['htmlhead'] .= <<< EOT
17 <script>
18 function insertFormatting(comment,BBcode,id) {
19         
20                 var tmpStr = $("#comment-edit-text-" + id).val();
21                 if(tmpStr == comment) {
22                         tmpStr = "";
23                         $("#comment-edit-text-" + id).addClass("comment-edit-text-full");
24                         $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
25                         openMenu("comment-edit-submit-wrapper-" + id);
26                         $("#comment-edit-text-" + id).val(tmpStr);
27                 }
28
29         textarea = document.getElementById("comment-edit-text-" +id);
30         if (document.selection) {
31                 textarea.focus();
32                 selected = document.selection.createRange();
33                 if (BBcode == "url"){
34                         selected.text = "["+BBcode+"]" + "http://" +  selected.text + "[/"+BBcode+"]";
35                         } else                  
36                 selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
37         } else if (textarea.selectionStart || textarea.selectionStart == "0") {
38                 var start = textarea.selectionStart;
39                 var end = textarea.selectionEnd;
40                 if (BBcode == "url"){
41                         textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
42                         } else
43                 textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
44         }
45         return true;
46 }
47
48 function cmtBbOpen(id) {
49         $(".comment-edit-bb-" + id).show();
50 }
51 function cmtBbClose(id) {
52         $(".comment-edit-bb-" + id).hide();
53 }
54
55 $(document).ready(function() {
56
57 $('html').click(function() { $("#nav-notifications-menu" ).hide(); });
58
59 $('.group-edit-icon').hover(
60         function() {
61                 $(this).addClass('icon'); $(this).removeClass('iconspacer');},
62         function() {
63                 $(this).removeClass('icon'); $(this).addClass('iconspacer');}
64         );
65
66 $('.sidebar-group-element').hover(
67         function() {
68                 id = $(this).attr('id');
69                 $('#edit-' + id).addClass('icon'); $('#edit-' + id).removeClass('iconspacer');},
70
71         function() {
72                 id = $(this).attr('id');
73                 $('#edit-' + id).removeClass('icon');$('#edit-' + id).addClass('iconspacer');}
74         );
75
76
77 $('.savedsearchdrop').hover(
78         function() {
79                 $(this).addClass('drop'); $(this).addClass('icon'); $(this).removeClass('iconspacer');},
80         function() {
81                 $(this).removeClass('drop'); $(this).removeClass('icon'); $(this).addClass('iconspacer');}
82         );
83
84 $('.savedsearchterm').hover(
85         function() {
86                 id = $(this).attr('id');
87                 $('#drop-' + id).addClass('icon');      $('#drop-' + id).addClass('drophide'); $('#drop-' + id).removeClass('iconspacer');},
88
89         function() {
90                 id = $(this).attr('id');
91                 $('#drop-' + id).removeClass('icon');$('#drop-' + id).removeClass('drophide'); $('#drop-' + id).addClass('iconspacer');}
92         );
93
94 });
95
96
97 </script>
98 EOT;
99 }