کتاب مقدس آنلاین: تفاوت میان نسخهها
ظاهر
بدون خلاصۀ ویرایش |
بدون خلاصۀ ویرایش |
||
| خط ۴۸۳: | خط ۴۸۳: | ||
}; | }; | ||
// ✅ تابع | // ✅ تابع ایمن برای بازنویسی لینکها — فقط اگر iframe موفق به بارگذاری شد | ||
function | function interceptInternalLinksSafely(iframe) { | ||
// فقط اگر iframe محتوایی داشت، ادامه بده | |||
try { | try { | ||
const doc = iframe.contentDocument || iframe.contentWindow.document; | const doc = iframe.contentDocument || iframe.contentWindow.document; | ||
if (!doc) return; | if (!doc || !doc.body || doc.body.innerHTML.trim() === '') { | ||
return; // اگر خالی بود، کاری نکن | |||
} | |||
const links = doc.querySelectorAll('a[href]'); | const links = doc.querySelectorAll('a[href]'); | ||
| خط ۴۹۴: | خط ۴۹۷: | ||
if (!href) return; | if (!href) return; | ||
if (href.includes('pediabible.com') || href.startsWith('/')) { | if (href.includes('pediabible.com') || href.startsWith('/')) { | ||
// جلوگیری از بازکردن در iframe — بلکه در تب جدید | |||
link.target = '_blank'; | |||
link.rel = 'noopener noreferrer'; | |||
} else if (!href.startsWith('#') && !href.startsWith('javascript:')) { | |||
} | |||
link.target = '_blank'; | link.target = '_blank'; | ||
link.rel = 'noopener noreferrer'; | link.rel = 'noopener noreferrer'; | ||
| خط ۵۳۰: | خط ۵۰۷: | ||
}); | }); | ||
} catch (err) { | } catch (err) { | ||
console.debug('دسترسی به iframe محدود شد | // اگر دسترسی نبود، لینکها را دست نزن — اما iframe خالی نماند | ||
console.debug('دسترسی به iframe محدود شد — لینکها در تب جدید باز میشوند.'); | |||
} | } | ||
} | } | ||
| خط ۶۸۵: | خط ۶۶۳: | ||
const pageTitle = translations[currentTranslation].getPageTitle(bookDisplayName, currentChapter); | const pageTitle = translations[currentTranslation].getPageTitle(bookDisplayName, currentChapter); | ||
const contentUrl = `${translations[currentTranslation].baseUrl}${encodeURIComponent(pageTitle)} | // ✅ بدون &action=render — چون ممکن است باعث خالی ماندن iframe شود | ||
const contentUrl = `${translations[currentTranslation].baseUrl}${encodeURIComponent(pageTitle)}`; | |||
versesContainer.innerHTML = ` | versesContainer.innerHTML = ` | ||
| خط ۶۹۸: | خط ۶۷۷: | ||
`; | `; | ||
wikiPageLink.href = | wikiPageLink.href = contentUrl; | ||
wikiPageLink.style.display = 'flex'; | wikiPageLink.style.display = 'flex'; | ||
updateNavigationButtons(); | updateNavigationButtons(); | ||
// ✅ | // ✅ بعد از بارگذاری، لینکها را ایمن کن | ||
const iframe = document.getElementById('content-iframe'); | const iframe = document.getElementById('content-iframe'); | ||
iframe.onload = function() { | iframe.onload = function() { | ||
interceptInternalLinksSafely(iframe); | |||
}; | }; | ||
} | } | ||