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