]> git.mxchange.org Git - friendica.git/blob - view/theme/slackr/theme.php
Merge pull request #313 from fabrixxm/master
[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
47 function hidecal() {
48         if(editor) return;
49         $('.fc').hide();
50 }
51
52 $(document).ready(function() {
53
54         $("#profile-jot-text").focus(hidecal);
55         $("#profile-jot-text").click(hidecal);
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 }