diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index 21d3a1deb..0127116c3 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -8071,7 +8071,7 @@ ExpandComment.callbacks.push(this.node); } if (Conf['Embedding'] || Conf['Link Title']) { - this.embedProcess = Function('link', "var data = this.services(link); if (data) { " + ((Conf['Embedding'] ? 'this.embed(data);\n' : '') + (Conf['Title Link'] ? 'this.title(data);' : '')) + " }"); + this.embedProcess = Function('link', "var data = this.services(link); if (data) { " + ((Conf['Embedding'] ? 'this.embed(data);\n' : '') + (Conf['Link Title'] ? 'this.title(data);' : '')) + " }"); } return Post.callbacks.push({ name: 'Linkify', diff --git a/builds/crx/script.js b/builds/crx/script.js index 1efae57d3..f1c80a375 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -8124,7 +8124,7 @@ ExpandComment.callbacks.push(this.node); } if (Conf['Embedding'] || Conf['Link Title']) { - this.embedProcess = Function('link', "var data = this.services(link); if (data) { " + ((Conf['Embedding'] ? 'this.embed(data);\n' : '') + (Conf['Title Link'] ? 'this.title(data);' : '')) + " }"); + this.embedProcess = Function('link', "var data = this.services(link); if (data) { " + ((Conf['Embedding'] ? 'this.embed(data);\n' : '') + (Conf['Link Title'] ? 'this.title(data);' : '')) + " }"); } return Post.callbacks.push({ name: 'Linkify', diff --git a/src/Linkification/Linkify.coffee b/src/Linkification/Linkify.coffee index 056933822..a9663fa68 100755 --- a/src/Linkification/Linkify.coffee +++ b/src/Linkification/Linkify.coffee @@ -14,7 +14,7 @@ Linkify = if (data) { #{ (if Conf['Embedding'] then 'this.embed(data);\n' else '') + - if Conf['Title Link'] then 'this.title(data);' else '' + if Conf['Link Title'] then 'this.title(data);' else '' } } "