Browse Source

Fixed recent emoji problems

master
Igor Zhukov 10 years ago
parent
commit
76871b65d3
  1. 15
      app/vendor/jquery.emojiarea/jquery.emojiarea.js

15
app/vendor/jquery.emojiarea/jquery.emojiarea.js vendored

@ -172,8 +172,13 @@
This function was added by Igor Zhukov to save recent used emojis. This function was added by Igor Zhukov to save recent used emojis.
*/ */
util.emojiInserted = function (emojiKey, menu) { util.emojiInserted = function (emojiKey, menu) {
var curEmojisStr = localStorage.getItem('emojis_recent'), try {
curEmojis = curEmojisStr && curEmojisStr.split(',') || [], var curEmojisStr = localStorage.getItem('emojis_recent');
} catch (e) {
return false;
}
var curEmojis = curEmojisStr && curEmojisStr.split(',') || [],
pos = curEmojis.indexOf(emojiKey); pos = curEmojis.indexOf(emojiKey);
if (!pos) { if (!pos) {
@ -608,6 +613,7 @@
} }
} }
} else { } else {
try {
var curEmojis = (localStorage.getItem('emojis_recent') || '').split(','), var curEmojis = (localStorage.getItem('emojis_recent') || '').split(','),
key, i; key, i;
for (i = 0; i < curEmojis.length; i++) { for (i = 0; i < curEmojis.length; i++) {
@ -616,6 +622,7 @@
html.push('<a href="javascript:void(0)" title="' + util.htmlEntities(key) + '">' + EmojiArea.createIcon(options[key]) + '<span class="label">' + util.htmlEntities(key) + '</span></a>'); html.push('<a href="javascript:void(0)" title="' + util.htmlEntities(key) + '">' + EmojiArea.createIcon(options[key]) + '<span class="label">' + util.htmlEntities(key) + '</span></a>');
} }
} }
} catch (e) {}
} }
this.$items.html(html.join('')); this.$items.html(html.join(''));
@ -632,8 +639,12 @@
*/ */
EmojiMenu.prototype.updateRecentTab = function(curEmojis) { EmojiMenu.prototype.updateRecentTab = function(curEmojis) {
if (curEmojis === undefined) { if (curEmojis === undefined) {
try {
var curEmojisStr = localStorage.getItem('emojis_recent'); var curEmojisStr = localStorage.getItem('emojis_recent');
curEmojis = curEmojisStr && curEmojisStr.split(',') || []; curEmojis = curEmojisStr && curEmojisStr.split(',') || [];
} catch (e) {
curEmojis = [];
}
} }
if (this.hasRecent != (curEmojis.length > 1)) { if (this.hasRecent != (curEmojis.length > 1)) {

Loading…
Cancel
Save