openscopeproject / TrguiNG

Remote GUI for Transmission torrent daemon
GNU Affero General Public License v3.0
331 stars 39 forks source link

Prevent scrolling the Name column into view when focusing rows in tables #180

Closed jpovixwm closed 6 months ago

jpovixwm commented 6 months ago

Fixes #179

For browsers that don't support this option, it is technically possible to prevent the scroll by restoring the scrollLeft property after calling .focus(), but this needs to be done on the .torrent-table-rows div, which is two .parentNodes above. I don't really think that's necessary, so I didn't do it.

qu1ck commented 6 months ago

Thanks