Changeset - c0d30a82a71f
[Not reviewed]
default
0 1 0
Nathan Brink (binki) - 14 years ago 2011-07-30 12:42:15
ohnobinki@ohnopublishing.net
Don't scroll to the top of the document on clicking ``Detailed Instructions...''
1 file changed with 3 insertions and 2 deletions:
0 comments (0 inline, 0 general)
scripts/scheduleInput.js
Show inline comments
 
/*
 
/* -*- tab-width: 4; -*-
 
 * Copyright 2010 Nathan Gelderloos, Ethan Zonca, Nathan Phillip Brink
 
 *
 
 * This file is part of SlatePermutate.
 
@@ -740,9 +740,10 @@ jQuery(document).ready(function() {
 
        // Show/Hide instructions
 
        //--------------------------------------------------
 
	jQuery('#schoolInstructionsBox').hide();
 
	jQuery('#showInstructions').click( function() {
 
	jQuery('#showInstructions').click( function(e) {
 
		jQuery('#showInstructions').hide();
 
		jQuery('#schoolInstructionsBox').slideToggle();
 
		e.preventDefault();
 
	});
 

	
 

	
0 comments (0 inline, 0 general)