Moin
8월 1, 2025, 4:23오후
1
I missed the EmojiPicker in the chat on my phone today. I am quite sure it used to be in the -menu. I found a video showing it was there 1.5 years ago (Chat emoji picker overflows on mobile ).
But now I cannot find it
The code appears unchanged to me. Or more precisely, the last change to this part was made by me and I am sure that it still worked after that
if (this.siteSettings.enable_emoji) {
api.registerChatComposerButton({
label: "chat.emoji",
id: "emoji",
class: "chat-emoji-btn",
icon: "face-smile",
position: "dropdown",
displayed: owner.lookup("service:site").mobileView,
action(context) {
const didSelectEmoji = (emoji) => {
const composer = owner.lookup(`service:chat-${context}-composer`);
composer.textarea.addText(
composer.textarea.getSelected(),
`:${emoji}:`
);
};
owner.lookup("service:menu").show(document.body, {
identifier: "emoji-picker",
groupIdentifier: "emoji-picker",
This file has been truncated. show original
Can I have my EmojiPicker back ?
2개의 좋아요
Jagster
(Jakke Flemming)
8월 1, 2025, 4:25오후
2
Don’t your phone offer emojipicker?
1개의 좋아요
Moin
8월 1, 2025, 5:05오후
3
Does that make a difference in terms of the bug?
In fact, I prefer to see the emoji before sending it as it will look afterwards. Otherwise the meaning can easily change due to different emoji sets.
1개의 좋아요
Jagster
(Jakke Flemming)
8월 1, 2025, 5:12오후
4
I ment I don’t even remember when I’ve seen emojipicker there last time. But sure — there is big chance I haven’t use emojies thru that + thing, because I get those easier from virtual keyboard.
I thought it has been removed because of that option
1개의 좋아요
renato
(Renato Atilio)
8월 1, 2025, 8:39오후
5
Hm, weird, it’s still there…
if (this.siteSettings.enable_emoji) {
api.registerChatComposerButton({
label: "chat.emoji",
id: "emoji",
class: "chat-emoji-btn",
icon: "face-smile",
position: "dropdown",
displayed: owner.lookup("service:site").mobileView,
I can still see it on communities I have Viewport based mobile mode enabled, but not here on Meta where it’s disabled.
2개의 좋아요
david
(David Taylor)
8월 1, 2025, 9:16오후
6
Interesting one! Actually reveals that there’s an issue both in ‘legacy’ mobileMode and also the future viewport-based-mobile-mode. This should take care of both:
https://github.com/discourse/discourse/pull/34036
3개의 좋아요
david
(David Taylor)
에 닫힘
8월 11, 2025, 7:00오전
7
This topic was automatically closed after 9 days. New replies are no longer allowed.