From 24bbf117a82d9edded4e1e26f83e61ea3de4b64b Mon Sep 17 00:00:00 2001 From: Zixaphir Date: Sun, 25 Aug 2013 10:54:59 -0700 Subject: [PATCH] Fix #443 --- builds/appchan-x.user.js | 2 +- builds/crx/script.js | 2 +- src/Linkification/Linkify.coffee | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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'