]> git.mxchange.org Git - friendica.git/blob - view/theme/vier/theme.php
Better handling of the network field in the item table.
[friendica.git] / view / theme / vier / theme.php
1 <?php
2 /**
3  * Name: Vier
4  * Version: 0.9
5  * Author: Fabio <http://kirgroup.com/profile/fabrixxm>
6  * Author: Ike <http://pirati.ca/profile/heluecht>
7  * Maintainer: Ike <http://pirati.ca/profile/heluecht>
8  * Description: "Vier" uses the font awesome font library: http://fortawesome.github.com/Font-Awesome/
9  */
10
11 function vier_init(&$a) {
12 set_template_engine($a, 'smarty3');
13
14 $baseurl = $a->get_baseurl();
15
16 $a->theme_info = array();
17
18 $a->page['htmlhead'] .= <<< EOT
19 <script type="text/javascript" src="$baseurl/view/theme/vier/js/jquery.divgrow-1.3.1.f1.min.js"></script>
20 <script>
21
22 function collapseHeight(elems) {
23         var elemName = '.wall-item-body:not(.divmore)';
24         if(typeof elems != 'undefined') {
25                 elemName = elems + ' ' + elemName;
26         }
27         $(elemName).each(function() {
28                 if($(this).height() > 450) {
29                         $('html').height($('html').height());
30                         $(this).divgrow({ initialHeight: 400, showBrackets: false, speed: 0 });
31                         $(this).addClass('divmore');
32                         $('html').height('auto');
33                 }
34         });
35 }
36
37 function insertFormatting(comment,BBcode,id) {
38
39                 var tmpStr = $("#comment-edit-text-" + id).val();
40                 if(tmpStr == comment) {
41                         tmpStr = "";
42                         $("#comment-edit-text-" + id).addClass("comment-edit-text-full");
43                         $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
44                         openMenu("comment-edit-submit-wrapper-" + id);
45                         $("#comment-edit-text-" + id).val(tmpStr);
46                 }
47
48         textarea = document.getElementById("comment-edit-text-" +id);
49         if (document.selection) {
50                 textarea.focus();
51                 selected = document.selection.createRange();
52                 if (BBcode == "url"){
53                         selected.text = "["+BBcode+"]" + "http://" +  selected.text + "[/"+BBcode+"]";
54                         } else
55                 selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
56         } else if (textarea.selectionStart || textarea.selectionStart == "0") {
57                 var start = textarea.selectionStart;
58                 var end = textarea.selectionEnd;
59                 if (BBcode == "url"){
60                         textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
61                         } else
62                 textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
63         }
64         return true;
65 }
66
67
68 function showThread(id) {
69         $("#collapsed-comments-" + id).show()
70         $("#collapsed-comments-" + id + " .collapsed-comments").show()
71 }
72 function hideThread(id) {
73         $("#collapsed-comments-" + id).hide()
74         $("#collapsed-comments-" + id + " .collapsed-comments").hide()
75 }
76
77
78 function cmtBbOpen(id) {
79         $("#comment-edit-bb-" + id).show();
80 }
81 function cmtBbClose(id) {
82         $("#comment-edit-bb-" + id).hide();
83 }
84 </script>
85 EOT;
86 }
87