aboutsummaryrefslogtreecommitdiffstats
path: root/demos/index.html
diff options
context:
space:
mode:
authorCa-Phun Ung <pazu2k@gmail.com>2009-01-02 14:54:25 +0000
committerCa-Phun Ung <pazu2k@gmail.com>2009-01-02 14:54:25 +0000
commit81428b3f51550d383a3b23138aa676bad30ab175 (patch)
tree7b884d8744668a46e956c636fe3fbb955cd869aa /demos/index.html
parent720b460ba6a8e0498ac25770907bbb983df31378 (diff)
downloadjquery-ui-81428b3f51550d383a3b23138aa676bad30ab175.tar.gz
jquery-ui-81428b3f51550d383a3b23138aa676bad30ab175.zip
demos/index.html - added fade in/out effect to demo notes.
Diffstat (limited to 'demos/index.html')
-rw-r--r--demos/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/index.html b/demos/index.html
index 6c60f6bad..3f0a40791 100644
--- a/demos/index.html
+++ b/demos/index.html
@@ -108,7 +108,7 @@
$(this).parents('ul').find('li').removeClass('demo-config-on');
$(this).parent().addClass('demo-config-on');
- $('#demo-notes').hide();
+ $('#demo-notes').fadeOut();
//Set the hash to the actual page without ".html"
window.location.hash = header + '|' + this.getAttribute('href').match((/\/([^\/\\]+)\.html/))[1];
@@ -160,7 +160,7 @@
$('<div id="demo-notes"></div>').insertAfter('#demo-config');
}
$('#demo-notes').hide().empty().html(notes.html());
- $('#demo-notes').show();
+ $('#demo-notes').fadeIn();
notes.hide();
}