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