6 * Author: Fabio Communi <fabrix.xm@gmail.com>
7 * Maintainer: Fabio Communi <fabrix.xm@gmail.com>
8 * Maintainer: Mike Macgirvin <mike@macgirvin.com>
11 $a->theme_info = array(
12 'extends' => 'duepuntozero',
15 function darkzero_init(&$a) {
16 $a->page['htmlhead'] .= <<< EOT
18 function insertFormatting(comment,BBcode,id) {
20 var tmpStr = $("#comment-edit-text-" + id).val();
21 if(tmpStr == comment) {
23 $("#comment-edit-text-" + id).addClass("comment-edit-text-full");
24 $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
25 openMenu("comment-edit-submit-wrapper-" + id);
26 $("#comment-edit-text-" + id).val(tmpStr);
29 textarea = document.getElementById("comment-edit-text-" +id);
30 if (document.selection) {
32 selected = document.selection.createRange();
34 selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]";
36 selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
37 } else if (textarea.selectionStart || textarea.selectionStart == "0") {
38 var start = textarea.selectionStart;
39 var end = textarea.selectionEnd;
41 textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
43 textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
48 function cmtBbOpen(comment, id) {
49 if($(comment).hasClass('comment-edit-text-full')) {
50 $(".comment-edit-bb-" + id).show();
55 function cmtBbClose(comment, id) {
56 if($(comment).hasClass('comment-edit-text-empty')) {
57 $(".comment-edit-bb-" + id).hide();
63 $(document).ready(function() {
65 $('html').click(function() { $("#nav-notifications-menu" ).hide(); });
67 $('.group-edit-icon').hover(
69 $(this).addClass('icon'); $(this).removeClass('iconspacer');},
71 $(this).removeClass('icon'); $(this).addClass('iconspacer');}
74 $('.sidebar-group-element').hover(
76 id = $(this).attr('id');
77 $('#edit-' + id).addClass('icon'); $('#edit-' + id).removeClass('iconspacer');},
80 id = $(this).attr('id');
81 $('#edit-' + id).removeClass('icon');$('#edit-' + id).addClass('iconspacer');}
85 $('.savedsearchdrop').hover(
87 $(this).addClass('drop'); $(this).addClass('icon'); $(this).removeClass('iconspacer');},
89 $(this).removeClass('drop'); $(this).removeClass('icon'); $(this).addClass('iconspacer');}
92 $('.savedsearchterm').hover(
94 id = $(this).attr('id');
95 $('#drop-' + id).addClass('icon'); $('#drop-' + id).addClass('drophide'); $('#drop-' + id).removeClass('iconspacer');},
98 id = $(this).attr('id');
99 $('#drop-' + id).removeClass('icon');$('#drop-' + id).removeClass('drophide'); $('#drop-' + id).addClass('iconspacer');}