emphasizes it's a jquery object
This commit is contained in:
parent
b5c5c9c883
commit
d992ef24ce
|
@ -203,12 +203,12 @@ export default Ember.Component.extend({
|
|||
});
|
||||
},
|
||||
|
||||
_bindHover(hoverables) {
|
||||
_bindHover($hoverables) {
|
||||
const replaceInfoContent = (html) => {
|
||||
$picker.find(".footer .info").html(html || "");
|
||||
};
|
||||
|
||||
(hoverables || this.$(".section-group")).on({
|
||||
($hoverables || this.$(".section-group")).on({
|
||||
mouseover: (event) => {
|
||||
const code = this._codeForEmojiLink($(event.currentTarget));
|
||||
const html = `<img src="${emojiUrlFor(code)}" class="emoji"> <span>:${code}:<span>`;
|
||||
|
|
Loading…
Reference in New Issue