aboutsummaryrefslogtreecommitdiffstats
path: root/jira-fixes.user.js
AgeCommit message (Collapse)Author
2023-03-28jira-fixes.user.js: Disconnect MutationObserverHEADmasterTeddy Wing
We only need the observer once to focus the left column on page load. After that, we don't need to be listening to DOM changes. Without disconnecting the observer, this broke '@'-name completion to reference other users. Because that completion adds a new element (the user list picker) to the column, our mutation observer gets called, and we focus the left column, un-focussing the comment area. Glad to have finally discovered why '@'-name completion in Jira comments broke for me.
2022-10-14Add license (GNU GPLv3+)Teddy Wing
2022-10-14jira-fixes.user.js: Add documentation about left column focus functionTeddy Wing
2022-10-14jira-fixes.user.js: Fix the first version of `focus_left_content_column`Teddy Wing
This one didn't work out because the element isn't on the page even at 'document-end'.
2022-10-14User script to force focus the left column in a Jira ticketTeddy Wing