File size: 827 Bytes
7e54de1 6c0c3bb 7e54de1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
function showDetail(paperId) {
// ้่ smartflow-paper-paperId ็ๆๆๅ
ๅผ่็น
var siblings = document.querySelectorAll(`div[id^='smartflow-paper-']:not(#smartflow-paper-${paperId.replace('.', '-')})`);
siblings.forEach(sibling => sibling.style.display = 'none');
// ๆพ็คบๅฝๅ่็น
var paper = document.getElementById(`smartflow-paper-${paperId.replace('.', '-')}`);
if (paper) {
paper.style.display = 'block';
}
document.getElementById("paper-detail-area").style.display = "block";
document.getElementById("paper-detail-area").scrollIntoView({
behavior: 'smooth'
});
}
// ไปURLไธญ่ทๅๅๆฐ
function getPaper() {
const paperId = new URLSearchParams(window.location.search).get('paper');
if (paperId) {
// showDetail(paperId);
}
} |