-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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
core(renderer): do not attempt fireworks for devtools #7090
Conversation
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.
WFM!
this._dom.find('.lh-header', headerContainer).addEventListener('click', _ => { | ||
headerContainer.classList.toggle('fireworks-paused'); | ||
}); | ||
if (!this._dom.isDevTools()) { |
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.
is this a pavel-reaction undoing? 😆
or do we just not want to deal with the differences right now getting it to work in a smaller header?
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.
we are brushing up on the release deadline for next chrome, so quick is good, and I just wanted to toss in the same hotfix here. but also we don't even have a design for fireworks in DT. @exterkamp should totes look into that
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.
wfm
this._dom.find('.lh-header', headerContainer).addEventListener('click', _ => { | ||
headerContainer.classList.toggle('fireworks-paused'); | ||
}); | ||
if (!this._dom.isDevTools()) { |
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.
I like this more simply as
if (!this._dom.isDevTools() && scoresAll100) {
to be more flat, but it wfm either way.
This was a hotfix applied to the 4.0.0 devtools roll. Now adding here.