demos/index.html: added functionality to pull descriptions from individual html files.

This commit is contained in:
Ca-Phun Ung 2008-12-30 18:26:51 +00:00
parent 31b8edcd4a
commit 5d1b0cb755

View File

@ -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) {
$('<div id="demo-notes" />').insertAfter('#demo-config');
}
$('#demo-notes').hide().empty().html(notes);
$('#demo-frame').fadeIn({complete: function() {
$('#demo-notes').fadeIn();
}});
});
})
.end()
.end()