This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var jumpto = (i , n)=>{ | |
var evt = new Event("blur", {"bubbles":true, "cancelable":false}); | |
var sldnr = document.querySelector('input.a-b-La-su-vb') ; | |
sldnr.value = `${i}`; | |
console.log(`jumping to ${i}, ${n} , ${sldnr.getAttribute('aria-label')}`); | |
sldnr.dispatchEvent(evt); | |
if(i<n){ | |
setTimeout(() => { | |
jumpto(i+1, n); | |
}, 1500); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[build-system] | |
requires = ["hatchling>=1.24.2", "hatch-vcs>=0.3.0"] | |
build-backend = "hatchling.build" | |
[project] | |
name = "pdfsplit" | |
description = "" | |
readme = "README.md" | |
license = "MIT" | |
requires-python = ">=3.11" |
OlderNewer