Commit 3de76e5250e20ec4d674bf704a41ddd543917644
include all emojis in suggest box by default
Matt McKegg committed on 10/15/2017, 11:05:51 PMParent: 77eedb8c00b849b6938a5209d63860dabd04b2f6
Files changed
modules/message/html/compose.js | changed |
modules/message/html/compose.js | ||
---|---|---|
@@ -144,9 +144,9 @@ | ||
144 | 144 | } |
145 | 145 | // TODO: when no emoji typed, list some default ones |
146 | 146 | cb(null, api.emoji.sync.names().filter(function (name) { |
147 | 147 | return name.slice(0, word.length) === word |
148 | - }).slice(0, 100).map(function (emoji) { | |
148 | + }).map(function (emoji) { | |
149 | 149 | return { |
150 | 150 | image: api.emoji.sync.url(emoji), |
151 | 151 | title: emoji, |
152 | 152 | subtitle: emoji, |
Built with git-ssb-web