(rowid)
| 53 | } |
| 54 | |
| 55 | function smoothScrollToRow(rowid) { |
| 56 | document.getElementById(rowid).scrollIntoView({ |
| 57 | behavior: "smooth", |
| 58 | block: "center", |
| 59 | inline: "nearest" |
| 60 | }); |
| 61 | } |
| 62 | |
| 63 | function focusInputField(input) { |
| 64 | input.scrollIntoView(false); |
no outgoing calls
no test coverage detected