Files @ 420a2b1067d4
Branch filter:

Location: SlatePermutate/scripts/displayTables.js - annotation

binki
Don't display tabs as a long stack before jQuery().tabs() can be called -- display them instead as inline-block.
1
2
3
4
5
6
7
8
9
$(document).ready(function() {

function hideAllButFirst(){
	jQuery('.week').hide();
};

hideAllButFirst();

}