#31893 closed defect (bug) (fixed)
include '//' in emoji url.
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 4.2 | Priority: | normal |
Severity: | normal | Version: | 4.2 |
Component: | General | Keywords: | |
Focuses: | javascript | Cc: |
Description
Posts containing the Emoji I was displayed in Chrome on Windows 8.1.
Emoji have been rewritten to img element, were included '' in the URL of the img element.
Example: beer
http://s.w.org/images/core/emoji/72x72//1f37a.png
I think that the 72x72//
is good in 72x72/
.
head element[page source]:
window._wpemojiSettings = {"baseUrl":"http:\/\/s.w.org\/images\/core\/emoji\/72x72\/","ext":".png", ...
twemoji.parse[wp-emoji.js]: line130
return ''.concat( options.base, '/', icon, options.ext );
I think that it should do fixed in such a feeling.
return ''.concat( options.base, icon, options.ext );
Change History (3)
Note: See
TracTickets for help on using
tickets.
In 32024: