UNPKG

oimp

Version:

A CLI tool for generating OI problem and packages

13 lines (12 loc) 402 B
"use strict" // 预览区相关 // 预览区滚动到对应行,应该是已经不用了 export function scrollPreviewToEditorLine(line) { const previewDiv = document.getElementById('preview-html'); if (previewDiv) { const el = previewDiv.querySelector(`[data-line='${line}']`); if (el) { el.scrollIntoView({ behavior: 'smooth', block: 'center' }); } } }