4,396
edits
No edit summary Tag: Reverted |
No edit summary Tag: Reverted |
||
Line 60: | Line 60: | ||
var quote = $(this).find('.quote').text(); | var quote = $(this).find('.quote').text(); | ||
var modificationDate = $(this).find('.modification-date').text(); | var modificationDate = $(this).find('.modification-date').text(); | ||
// Fetching related articles content | // Fetching and handling related articles content | ||
var relatedArticlesContent = $(this).find('.related-articles').html() || ''; | |||
if (relatedArticlesContent.trim() === '') { | |||
relatedArticlesContent = '<p>No related articles found.</p>'; | |||
} | |||
// Append the related articles content to the modal | |||
$('#related-articles').html(relatedArticlesContent); | |||
// Update the fixed column content | // Update the fixed column content |