Commit Graph

7 Commits (e82f3caa6bbf087b3a1a2e4e93a1063004b1fa40)

Author SHA1 Message Date
wxiaoguang a88f718c10
Refactor dropzone ()
Refactor the legacy code and remove some jQuery calls.
wxiaoguang bda875b6e6
Switch to "Write" tab when edit comment again ()
Fix 
silverwind 507fbf4c3c
Use `querySelector` over alternative DOM methods ()
As per
https://github.com/go-gitea/gitea/pull/30115#discussion_r1626060164,
prefer `querySelector` by enabling
[`unicorn/prefer-query-selector`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-query-selector.md)
and autofixing all except 10 issues.

According to
[this](https://old.reddit.com/r/learnjavascript/comments/i0f5o8/performance_of_getelementbyid_vs_queryselector/),
querySelector may be faster as well, so it's a win-win.

---------

Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Co-authored-by: Giteabot <teabot@gitea.io>
silverwind a2304cb163
Remove jQuery `.text()` ()
Remove and forbid [.text()](https://api.jquery.com/text/). Tested some,
but not all functionality, but I think these are pretty safe
replacements.

---------

Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
metiftikci aa92b13164
Prevent simultaneous editing of comments and issues ()
fixes  

Tested:
- [x] issue content edit
- [x] issue content change tasklist
- [x] pull request content edit
- [x] pull request change tasklist

![issue-content-edit](https://github.com/go-gitea/gitea/assets/29250154/a0828889-fb96-4bc4-8600-da92e3205812)
wxiaoguang 8de2992ffb
Make Ctrl+Enter work for issue/comment edit ()
Fix 
wxiaoguang 26ee66327f
Split `issue edit` code from `repo-legacy.js` into its own file ()
Follow Split `index.js` to separate files ()

It's time to move some code away from the messy "legacy" file.