Skip to content
This repository has been archived by the owner on Oct 17, 2019. It is now read-only.

Commit

Permalink
fix: 絵文字ピッカーが表示できない問題を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
nzws committed Sep 2, 2018
1 parent 8138fc8 commit c95bbb4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions www/js/emoji.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ function renderCustomEmoji(emojiobj) {
.then(function(json) {
if (json) {
var emoji_mode = getConfig(1, 'no_gif') ? 'static_url' : 'url';

i = 0;
while (json[i]) {
search_a_custom.push(json[i]['shortcode']);
Expand All @@ -156,8 +155,10 @@ function renderCustomEmoji(emojiobj) {
'</div>';
emojiobj.innerHTML =
"<ons-list-title class='invisible' id='ep_search_result_title'>" +
i18next.t('emoji_category.Search');
+'</ons-list-title>' + customreshtml + emojiobj.innerHTML;
i18next.t('emoji_category.Search') +
'</ons-list-title>' +
customreshtml +
emojiobj.innerHTML;
}
emojiobj.dataset.isload = 'yes';
load.className = 'invisible';
Expand Down

0 comments on commit c95bbb4

Please sign in to comment.