Commit 94869ef6 by Kyle Fiedler

Added some poor jquery to remove the paragaph dropdown

parent 427c390c
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -10,8 +10,11 @@
$(".sequence-nav li a").hover(function(){
$(this).siblings().toggleClass("shown");
});
});
$(".Strain-Logic-Circuit-Switched-Capacitor-BJT-OpAmpRL-OpAmpFET-Trapping-Noise-Increasing-Q-Scope-Probe-Triode-Amplifier > p").remove(); });
});
</script>
</%block>
......
......@@ -76,10 +76,10 @@ function ${ id }goto(i) {
function ${ id }setup_click(i) {
$('#tt_'+i).click(function(eo) { ${ id }goto(i);});
$('#tt_'+i).addClass("seq_"+${ id }types[i]+"_inactive");
$('#tt_'+i).parent().append("<p>" + ${ id }titles[i-1] + "</p>");
}
$('#tt_'+i).addClass("seq_"+${ id }types[i]+"_inactive");
var title_class = ${ id }titles[i-1].replace(/\s/g, '-');
$('#tt_'+i).parent().append("<p>" + ${ id }titles[i-1] + "</p>").addClass(title_class);
}
function ${ id }next() {
var i=${ id }loc+1;
......
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