Hello darkyndy.
I have just update to 2.01 and I see the auto embed in the signatures also.
I saw you only check the parentNode of the main Element.
pageLinks[i].parentNode.className
But this forum allow different text modes and container modes (URL, Quote, IMG, Vode, Bold, Code, Spoiler, Underline, etc), so, many times the parentNode isn't ever the main DIV container.
for (var fix=1;
fix<=10;
fix=fix+1){
if (fix_element.className == 'signature') { var signature=true; }
fix_element=fix_element.parentNode;
}
I have modified the code again for this version. This is the change:
/* elotrolado.net test */
case 0:
var fix_element=pageLinks[i];
for (var fix=1; fix<=10; fix=fix+1) {
if (fix_element.className == 'signature') { linkAcceptedForEmbed = false; }
fix_element=fix_element.parentNode;
}
break;
As you support elotrolado.net now, I think upload the fixed script is not necessary - We can wait for your update.
Thanks again.