12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
-
-
-
-
-
-
-
-
- function m1_init(){
- clog("M1 INIT")
-
-
- muo()
-
- }
-
-
-
- function mo_cb(){
- clog("mutate",arguments,this)
- mdev()
- }
-
- function muo(){
- glob_u.rrefs.obs = glob_u.rrefs.obs || {}
- if (!glob_u?.rrefs?.obs?.m){
-
- m=new MutationObserver(mo_cb)
- glob_u.rrefs.obs.m=m
- }
- glob_u.rrefs.obs.m.observe(document.querySelector(".max-w-narrow>div"),{childList:true})
-
- }
-
-
- function ev_proc(argument) {
- var j
- var m = new Map()
-
-
- for (n of $(".max-w-narrow>div>div")){
- j=$(n)
- let tx = j.find("time")
- // let tx = j.find("a")
- var k
- var arr= []
- for (k of tx){
- arr.push(k.href)
- }
- clog(tx.length,arr,n,tx)
- // clog(j,tx)
- // m.setD()
- glob_u.fns.inc_map(m,tx.length)
- }
- return m
-
- // body...
- }
-
-
-
-
-
- // glob_u.rrefs.obs.m.observe(document.querySelector(".max-w-narrow>div"),{childList:true})
-
-
- // glob_u.rrefs.obs.m.observe(document.querySelector(".max-w-narrow>div"))
- // addEventListener("load",m1_init)
- clog("M1~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~")
-
- window.on_jsync_lib_load.push(m1_init)
-
-
- muo()
-
|