-
-
Notifications
You must be signed in to change notification settings - Fork 3k
refactor(modals): remove jquery in ts/modals (@fcasibu) #7292
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
fcasibu
wants to merge
30
commits into
monkeytypegame:master
Choose a base branch
from
fcasibu:refactor/ts-modals-remove-jquery
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+568
−447
Open
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
4efae15
refactor: remove jquery in modals/custom-generator
fcasibu 8e83998
refactor: remove jquery in modals/custom-test-duration
fcasibu dcd8755
feat(dom): add setValue method in ElementsWithUtils
fcasibu b4550fb
refactor: remove jquery in modals/custom-text
fcasibu 6011955
refactor: remove jquery in modals/dev-options
fcasibu 326531d
refactor: remove jquery in modals/edit-preset
fcasibu 57f71f9
refactor: remove jquery in modals/edit-profile
fcasibu b4fa61d
refactor: remove jquery in modals/edit-result-tags
fcasibu f4629c7
refactor: remove jquery in modals/google-sign-up
fcasibu dfd13a4
refactor: remove jquery in modals/last-signout-result
fcasibu 2e0ee98
refactor: remove jquery in modals/mobile-test-config
fcasibu 3f89b9a
refactor: remove jquery in modals/practice-words
fcasibu e0078f3
refactor: remove jquery in modals/quote-approve
fcasibu f850bd5
refactor: remove jquery in modals/quote-rate
fcasibu e3cfa82
feat(dom): add force argument to toggleClass
fcasibu 9487160
refactor: remove jquery in modals/quote-report
fcasibu bbe3c24
refactor: remove jquery in modals/quote-search
fcasibu 1c51556
refactor: remove jquery in modals/quote-submit
fcasibu 4c9d998
refactor: remove jquery in modals/save-custom-text
fcasibu 06521f2
refactor: remove jquery in modals/saved-texts
fcasibu 00c2dbc
refactor: remove jquery in modals/share-custom-theme
fcasibu 0ce3d5c
refactor: remove jquery in modals/share-test-settings
fcasibu ee11e16
refactor: remove jquery in modals/simple-modals
fcasibu 2360d5c
refactor: remove jquery in modals/user-report
fcasibu 3f58ffd
refactor: remove jquery in modals/version-history
fcasibu 937446c
refactor: remove jquery in modals/word-filter
fcasibu d3924c0
Merge branch 'master' into pr/fcasibu/7292
Miodec 48e1140
Merge branch 'master' into refactor/ts-modals-remove-jquery
Miodec 07ef285
setchecked
Miodec 11c53d9
focus
Miodec File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Incorrect use of qsa on elements. Lines 83-84 and 86-87 use qsa() which returns multiple elements, but then call show()/hide() directly on the result. Since these selectors likely match multiple elements, this is correct usage. However, the inconsistency with lines 63-64 which use qs() for .group elements should be reviewed - if multiple .section elements exist, qsa should be used consistently.