کتاب مقدس آنلاین: تفاوت میان نسخهها
ظاهر
بدون خلاصۀ ویرایش برچسب: برگرداندهشده |
بدون خلاصۀ ویرایش برچسب: برگرداندهشده |
||
| خط ۳۲: | خط ۳۲: | ||
} | } | ||
// نمایش فصل با iframe - فقط محتوای اصلی | |||
function displayChapterWithIframe() { | |||
const bookIndex = parseInt(currentBook); | |||
const bookData = bibleBooks[currentTestament][bookIndex]; | |||
const bookName = bookData.name; | |||
const bookDisplayName = bookData.displayName; | |||
const translationName = translations[currentTranslation].name; | |||
chapterTitle.textContent = `${translationName} - ${bookName} - فصل ${currentChapter}`; | |||
// استفاده از الگوی مناسب برای هر ترجمه | |||
const pageTitle = translations[currentTranslation].getPageTitle(bookDisplayName, currentChapter); | |||
// استفاده از action=render برای نمایش فقط محتوای اصلی | |||
const contentUrl = `${translations[currentTranslation].baseUrl}${encodeURIComponent(pageTitle)}&action=render`; | |||
// ایجاد iframe با onload | |||
const iframe = document.createElement('iframe'); | |||
iframe.id = 'content-iframe'; | |||
iframe.src = contentUrl; | |||
iframe.className = 'content-display'; | |||
iframe.frameBorder = '0'; | |||
iframe.loading = 'lazy'; | |||
iframe.allowFullscreen = true; | |||
// اضافه کردن event listener برای لود شدن iframe | |||
iframe.onload = function() { | |||
try { | |||
const iframeDoc = iframe.contentDocument || iframe.contentWindow.document; | |||
const links = iframeDoc.querySelectorAll('a'); | |||
links.forEach(link => { | |||
// اگر لینک به دامنه pediabible.com اشاره میکند، در تب جدید باز شود | |||
if (link.href && link.href.includes('pediabible.com')) { | |||
link.target = '_blank'; | |||
link.rel = 'noopener noreferrer'; | |||
} | |||
}); | |||
} catch (error) { | |||
console.log('امکان دسترسی به iframe برای تغییر لینکها وجود ندارد:', error); | |||
} | |||
}; | |||
versesContainer.innerHTML = ''; | |||
versesContainer.appendChild(iframe); | |||
// لینک صفحه کامل برای باز کردن در تب جدید | |||
wikiPageLink.href = `${translations[currentTranslation].baseUrl}${encodeURIComponent(pageTitle)}`; | |||
wikiPageLink.style.display = 'flex'; | |||
updateNavigationButtons(); | |||
} | |||
/* مخفی کردن هدرهای اضافی ویکی */ | /* مخفی کردن هدرهای اضافی ویکی */ | ||
body > header:first-child, | body > header:first-child, | ||
| خط ۴۱: | خط ۹۳: | ||
display: none !important; | display: none !important; | ||
} | } | ||
.container { | .container { | ||
max-width: 1200px; | max-width: 1200px; | ||
| خط ۸۳۱: | خط ۸۸۲: | ||
console.log('✅ برنامه کتاب مقدس روی دامنه مجاز بارگذاری شد'); | console.log('✅ برنامه کتاب مقدس روی دامنه مجاز بارگذاری شد'); | ||
} | } | ||
// 🔒 شروع برنامه با بررسی امنیتی | // 🔒 شروع برنامه با بررسی امنیتی | ||
document.addEventListener('DOMContentLoaded', function() { | document.addEventListener('DOMContentLoaded', function() { | ||
| خط ۸۶۳: | خط ۸۹۵: | ||
configurable: false | configurable: false | ||
}); | }); | ||
</script> | </script> | ||
</body> | </body> | ||
</html> | </html> | ||