diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index 954ee7b57..f6d4dd7a4 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -6812,7 +6812,7 @@ if (this.isClone) { if (Conf['Embedding']) { i = 0; - items = $$('.embed', this.nodes.comment); + items = $$('.embedder', this.nodes.comment); while (el = items[i++]) { $.on(el, 'click', Linkify.cb.toggle); if ($.hasClass(el, 'embedded')) { diff --git a/builds/crx/script.js b/builds/crx/script.js index eba3a8d17..f061593ea 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -6822,7 +6822,7 @@ if (this.isClone) { if (Conf['Embedding']) { i = 0; - items = $$('.embed', this.nodes.comment); + items = $$('.embedder', this.nodes.comment); while (el = items[i++]) { $.on(el, 'click', Linkify.cb.toggle); if ($.hasClass(el, 'embedded')) { diff --git a/src/Linkification/Linkify.coffee b/src/Linkification/Linkify.coffee index a7aab6a2e..f0cb67553 100755 --- a/src/Linkification/Linkify.coffee +++ b/src/Linkification/Linkify.coffee @@ -34,7 +34,7 @@ Linkify = if @isClone if Conf['Embedding'] i = 0 - items = $$ '.embed', @nodes.comment + items = $$ '.embedder', @nodes.comment while el = items[i++] $.on el, 'click', Linkify.cb.toggle Linkify.cb.toggle.call el if $.hasClass el, 'embedded'