update
This commit is contained in:
@@ -65,6 +65,11 @@ function taste(e) {
|
||||
// Vertikales Scrollen und Text-Markieren bleiben unberührt (dy-Vergleich).
|
||||
let wisch = null
|
||||
function wischStart(e) {
|
||||
// Start auf horizontal scrollbarem Element (breite Formel/Tabelle):
|
||||
// der Wisch gehört dem Element, nicht der Seiten-Navigation
|
||||
for (let el = e.target; el && el !== e.currentTarget; el = el.parentElement) {
|
||||
if (el.scrollWidth > el.clientWidth + 1) { wisch = null; return }
|
||||
}
|
||||
const t = e.touches[0]
|
||||
wisch = { x: t.clientX, y: t.clientY }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user