Commit 440539c0 by Kyle Fiedler

Removed js from textbox

parent e6f9f8d9
...@@ -45,25 +45,6 @@ ...@@ -45,25 +45,6 @@
indentWithTabs: true, indentWithTabs: true,
smartIndent: false smartIndent: false
}); });
// this should be brought back into problems
$('.longform-body').hide();
$('.longform-header').append('<a href="" class="full">See full output</a>');
$('.full').click(function() {
$(this).parent().siblings().slideToggle();
$(this).parent().parent().toggleClass('open');
var text = $(this).text() == 'See full output' ? 'Hide output' : 'See full output';
$(this).text(text);
return false;
});
$('.collapsible section').hide()
$('.collapsible header a').click(function() {
$(this).parent().siblings().slideToggle();
$(this).parent().parent().toggleClass('open');
return false
});
}); });
</script> </script>
</section> </section>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment