-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Remove last traces of has-emoji class #11263
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
Conversation
Now that emojify.js has been removed, get rid of all instances of has-emoji class that was only used for that. Support for rendering shortcodes should remain in all of these places so it should still work the same.
Does functions |
Yep: Lines 200 to 210 in 4974b7c
(same for subject one below that too) |
Co-authored-by: 6543 <[email protected]>
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 did not grep recursive for 'has-emoji' jet. But this should catch some ;)
I take it the cases where only the class was removed and nothing added were already rendering correctly? |
yep #11263 (comment) as an example |
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.
$ rg 'has-emoji' options/locale/locale_en-US.ini
868:issues.add_label_at = added the <div class="ui label has-emoji" style="color: %s\; background-color: %s">%s</div> label %s
869:issues.remove_label_at = removed the <div class="ui label has-emoji" style="color: %s\; background-color: %s">%s</div> label %s
had time to rg it ;) ☝️ |
ah sneaky : ) rending for this was already fixed in template code but have removed class name from translations file |
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.
👍
Codecov Report
@@ Coverage Diff @@
## master #11263 +/- ##
==========================================
+ Coverage 43.29% 43.31% +0.01%
==========================================
Files 605 605
Lines 86273 86275 +2
==========================================
+ Hits 37354 37371 +17
+ Misses 44314 44304 -10
+ Partials 4605 4600 -5
Continue to review full report at Codecov.
|
Now that emojify.js has been removed, get rid of all instances of has-emoji class that was only used for that. Support for rendering shortcodes should remain in all of these places so it should still work the same. Co-authored-by: 6543 <[email protected]> Co-authored-by: Lauris BH <[email protected]>
Now that emojify.js has been removed, get rid of all instances of has-emoji class that was only used for that. Support for rendering shortcodes remains in all of these places so it should still work the same.