Lines Matching refs:button
27 var button = $('<span class="copybutton">>>></span>');
28 button.css(button_styles)
29 button.attr('title', hide_text);
30 button.data('hidden', 'false');
31 jthis.prepend(button);
43 var button = $(this);
44 if (button.data('hidden') === 'false') {
46 button.parent().find('.go, .gp, .gt').hide();
47 button.next('pre').find('.gt').nextUntil('.gp, .go').css('visibility', 'hidden');
48 button.css('text-decoration', 'line-through');
49 button.attr('title', show_text);
50 button.data('hidden', 'true');
53 button.parent().find('.go, .gp, .gt').show();
54 button.next('pre').find('.gt').nextUntil('.gp, .go').css('visibility', 'visible');
55 button.css('text-decoration', 'none');
56 button.attr('title', hide_text);
57 button.data('hidden', 'false');