-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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
refactor: clean up removeChild usages #23592
Conversation
c18de62
to
04e3e77
Compare
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.
LGTM. Did you consider adding removeChild
to the TSLint ban rule (if that even works)?
04e3e77
to
ac12e2f
Compare
ac12e2f
to
eb24b67
Compare
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.
LGTM
Rebased. |
eb24b67
to
30c2237
Compare
Now that we don't have to support IE11 anymore, we can use `Element.remove` instead of `removeChild`.
30c2237
to
d4c4e56
Compare
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Now that we don't have to support IE11 anymore, we can use
Element.remove
instead ofremoveChild
.