2 $a->theme_info = array(
3 'extends' => 'duepuntozero',
6 function purplezero_init(&$a) {
7 $a->page['htmlhead'] .= <<< EOT
9 function insertFormatting(comment,BBcode,id) {
11 var tmpStr = $("#comment-edit-text-" + id).val();
12 if(tmpStr == comment) {
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);
20 textarea = document.getElementById("comment-edit-text-" +id);
21 if (document.selection) {
23 selected = document.selection.createRange();
25 selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]";
27 selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
28 } else if (textarea.selectionStart || textarea.selectionStart == "0") {
29 var start = textarea.selectionStart;
30 var end = textarea.selectionEnd;
32 textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
34 textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
39 function cmtBbOpen(id) {
40 $(".comment-edit-bb-" + id).show();
42 function cmtBbClose(id) {
43 $(".comment-edit-bb-" + id).hide();
45 $(document).ready(function() {
47 $('html').click(function() { $("#nav-notifications-menu" ).hide(); });
49 $('.group-edit-icon').hover(
51 $(this).addClass('icon'); $(this).removeClass('iconspacer');},
53 $(this).removeClass('icon'); $(this).addClass('iconspacer');}
56 $('.sidebar-group-element').hover(
58 id = $(this).attr('id');
59 $('#edit-' + id).addClass('icon'); $('#edit-' + id).removeClass('iconspacer');},
62 id = $(this).attr('id');
63 $('#edit-' + id).removeClass('icon');$('#edit-' + id).addClass('iconspacer');}
67 $('.savedsearchdrop').hover(
69 $(this).addClass('drop'); $(this).addClass('icon'); $(this).removeClass('iconspacer');},
71 $(this).removeClass('drop'); $(this).removeClass('icon'); $(this).addClass('iconspacer');}
74 $('.savedsearchterm').hover(
76 id = $(this).attr('id');
77 $('#drop-' + id).addClass('icon'); $('#drop-' + id).addClass('drophide'); $('#drop-' + id).removeClass('iconspacer');},
80 id = $(this).attr('id');
81 $('#drop-' + id).removeClass('icon');$('#drop-' + id).removeClass('drophide'); $('#drop-' + id).addClass('iconspacer');}