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