(id,dst)
| 133 | } |
| 134 | } |
| 135 | function scrollToView(id,dst){ |
| 136 | setTimeout( |
| 137 | function(){ |
| 138 | if(dst&&document.getElementById('code_con').open){ |
| 139 | console.log('dst',dst) |
| 140 | document.getElementById(id).scrollIntoView() |
| 141 | window.scrollBy(0,dst) |
| 142 | }else{ |
| 143 | document.getElementById(id).scrollIntoView({behavior:'smooth'}) |
| 144 | } |
| 145 | },1 |
| 146 | ) |
| 147 | } |
| 148 | |
| 149 | function saveScast(){ |
| 150 | var q = RegExp('[?&]file=([^&]*)').exec(location.href); |
no outgoing calls
no test coverage detected