Fix tests

// FREEBIE
This commit is contained in:
lilia 2016-09-01 13:31:36 -07:00
parent bf1d6fc02f
commit 7e0df07e88
3 changed files with 11 additions and 9 deletions

View file

@ -13,7 +13,7 @@
}
this.inits.env = 1;
this.include_title = true;
this.img_sets.apple.path = 'images/emoji/apple/';
this.img_sets.apple.path = '/images/emoji/apple/';
this.replace_mode = 'img';
};
EmojiConvertor.prototype.replace_unified = function(str) {
@ -43,7 +43,7 @@
emoji.init_colons();
window.emoji_util.parse = function($el) {
$el.html(emoji.replace_unified($el.text()));
$el.html(emoji.replace_unified($el.html()));
};
})();