4,090
edits
No edit summary |
No edit summary |
||
Line 53: | Line 53: | ||
// Apply the fade-out effect to the #list element | // Apply the fade-out effect to the #list element | ||
$('#list').addClass('fade-out'); | $('#list').addClass('fade-out'); | ||
// Get the height of #show-article content | |||
var showArticleContentHeight = $('#show-article').height(); | |||
// Set the height of #article-frame | |||
$('#article-frame').height(showArticleContentHeight); | |||
}); | }); | ||