Putting document.ready back
This commit is contained in:
parent
80c5c5c9f5
commit
d04e8eff00
1 changed files with 10 additions and 8 deletions
|
|
@ -3,14 +3,16 @@
|
|||
-# the COPYRIGHT file.
|
||||
|
||||
:javascript
|
||||
$("#settings_nav li > a").live("click", function() {
|
||||
var target = "#"+$(this).attr('class');
|
||||
if( !$(target).is(":visible") ) {
|
||||
$(".settings_pane").fadeOut(200, function() {
|
||||
$(target).delay(200).fadeIn(200);
|
||||
});
|
||||
}
|
||||
});
|
||||
$(document).ready(function(){
|
||||
$("#settings_nav li > a").live("click", function() {
|
||||
var target = "#"+$(this).attr('class');
|
||||
if( !$(target).is(":visible") ) {
|
||||
$(".settings_pane").fadeOut(200, function() {
|
||||
$(target).delay(200).fadeIn(200);
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
#section_header
|
||||
%h2
|
||||
|
|
|
|||
Loading…
Reference in a new issue