کتاب مقدس آنلاین: تفاوت میان نسخهها
ظاهر
بدون خلاصۀ ویرایش |
بدون خلاصۀ ویرایش |
||
| خط ۴۴۵: | خط ۴۴۵: | ||
</div> | </div> | ||
`; | `; | ||
} | } | ||
| خط ۸۱۶: | خط ۷۷۳: | ||
wikiPageLink.href = `${translations[currentTranslation].baseUrl}${encodeURIComponent(pageTitle)}`; | wikiPageLink.href = `${translations[currentTranslation].baseUrl}${encodeURIComponent(pageTitle)}`; | ||
wikiPageLink.style.display = 'flex'; | wikiPageLink.style.display = 'flex'; | ||
updateNavigationButtons(); | updateNavigationButtons(); | ||
} | } | ||
| خط ۸۷۷: | خط ۸۳۰: | ||
console.log('✅ برنامه کتاب مقدس روی دامنه مجاز بارگذاری شد'); | console.log('✅ برنامه کتاب مقدس روی دامنه مجاز بارگذاری شد'); | ||
} | } | ||
function interceptInternalLinks(iframe) { | |||
try { | |||
const doc = iframe.contentDocument || iframe.contentWindow.document; | |||
const links = doc.querySelectorAll('a[href*="title="]'); | |||
links.forEach(link => { | |||
const href = link.getAttribute('href'); | |||
if (!href || href.startsWith('http') && !href.includes('pediabible.com')) return; | |||
link.addEventListener('click', function(e) { | |||
e.preventDefault(); | |||
let url; | |||
try { | |||
url = href.startsWith('http') ? new URL(href) : new URL(href, location.origin); | |||
} catch { | |||
return; | |||
} | |||
const title = url.searchParams.get('title') || decodeURIComponent(url.pathname.split('/').pop()); | |||
if (title) { | |||
const renderUrl = `${location.origin}/index.php?title=${encodeURIComponent(title)}&action=render`; | |||
iframe.src = renderUrl; | |||
document.getElementById('chapter-title').textContent = `مطلب: ${decodeURIComponent(title)}`; | |||
} | |||
}); | |||
}); | |||
} catch (err) { | |||
console.warn('دسترسی به iframe محدود شد:', err.message); | |||
} | |||
} | |||
// 🔒 شروع برنامه با بررسی امنیتی | // 🔒 شروع برنامه با بررسی امنیتی | ||