2 $a->theme_info = array(
3 'extends' => 'duepuntozero',
6 function slackr_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);
21 textarea = document.getElementById("comment-edit-text-" +id);
22 if (document.selection) {
24 selected = document.selection.createRange();
26 selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]";
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;
33 textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
35 textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
40 function cmtBbOpen(comment, id) {
41 if($(comment).hasClass('comment-edit-text-full')) {
42 $(".comment-edit-bb-" + id).show();
47 function cmtBbClose(comment, id) {
48 if($(comment).hasClass('comment-edit-text-empty')) {
49 $(".comment-edit-bb-" + id).hide();
61 $(document).ready(function() {
63 $("#profile-jot-text").focus(hidecal);
64 $("#profile-jot-text").click(hidecal);
66 $('html').click(function() { $("#nav-notifications-menu" ).hide(); });
68 $('.group-edit-icon').hover(
70 $(this).addClass('icon'); $(this).removeClass('iconspacer');},
72 $(this).removeClass('icon'); $(this).addClass('iconspacer');}
75 $('.sidebar-group-element').hover(
77 id = $(this).attr('id');
78 $('#edit-' + id).addClass('icon'); $('#edit-' + id).removeClass('iconspacer');},
81 id = $(this).attr('id');
82 $('#edit-' + id).removeClass('icon');$('#edit-' + id).addClass('iconspacer');}
86 $('.savedsearchdrop').hover(
88 $(this).addClass('drop'); $(this).addClass('icon'); $(this).removeClass('iconspacer');},
90 $(this).removeClass('drop'); $(this).removeClass('icon'); $(this).addClass('iconspacer');}
93 $('.savedsearchterm').hover(
95 id = $(this).attr('id');
96 $('#drop-' + id).addClass('icon'); $('#drop-' + id).addClass('drophide'); $('#drop-' + id).removeClass('iconspacer');},
99 id = $(this).attr('id');
100 $('#drop-' + id).removeClass('icon');$('#drop-' + id).removeClass('drophide'); $('#drop-' + id).addClass('iconspacer');}