aboutsummaryrefslogtreecommitdiffstats
path: root/demos/index.html
diff options
context:
space:
mode:
authorCa-Phun Ung <pazu2k@gmail.com>2008-12-30 20:46:08 +0000
committerCa-Phun Ung <pazu2k@gmail.com>2008-12-30 20:46:08 +0000
commit47e08c211a3f36d564b7683d60da3e07e0e6f22d (patch)
tree701a8c4a3b42d4a59a4282dd7fefbea189e66ba5 /demos/index.html
parent04069424ced0b329d8335afcfba6a93de1181dea (diff)
downloadjquery-ui-47e08c211a3f36d564b7683d60da3e07e0e6f22d.tar.gz
jquery-ui-47e08c211a3f36d564b7683d60da3e07e0e6f22d.zip
demos/index.html: added a check to fix initial load in opera.
Diffstat (limited to 'demos/index.html')
-rw-r--r--demos/index.html8
1 files changed, 6 insertions, 2 deletions
diff --git a/demos/index.html b/demos/index.html
index cfae779c8..ced365db9 100644
--- a/demos/index.html
+++ b/demos/index.html
@@ -47,9 +47,13 @@
if ($('#demo-notes').length == 0) {
$('<div id="demo-notes"></div>').insertAfter('#demo-config');
}
- $('#demo-notes').hide().empty().html(notes.html()).fadeIn();
+ $('#demo-notes').hide().empty().html(notes.html());
+ $('#demo-notes').fadeIn();
notes.hide();
- });
+ });
+
+ if ($('#demo-frame .demo-description:visible'))
+ $('#demo-frame').trigger('load');
})
.end()
.end()