From 5d1b0cb7557d89d790858cef2c5cdb7ca888a552 Mon Sep 17 00:00:00 2001 From: Ca-Phun Ung Date: Tue, 30 Dec 2008 18:26:51 +0000 Subject: [PATCH] demos/index.html: added functionality to pull descriptions from individual html files. --- demos/index.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/demos/index.html b/demos/index.html index 130b02f84..775630bf4 100644 --- a/demos/index.html +++ b/demos/index.html @@ -37,8 +37,21 @@ $(this).click(function() { $(this).parents('ul').find('li').removeClass('demo-config-on'); $(this).parent().addClass('demo-config-on'); + $('#demo-notes').hide(); + $('#demo-frame').fadeOut(); }); }); + + $('#demo-frame').load(function(){ + var notes = $('.demo-description *', $(this).contents()[0]); + if ($('#demo-notes').length == 0) { + $('
').insertAfter('#demo-config'); + } + $('#demo-notes').hide().empty().html(notes); + $('#demo-frame').fadeIn({complete: function() { + $('#demo-notes').fadeIn(); + }}); + }); }) .end() .end() -- 2.39.5