You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to boxy
Well, the result isn't an error but Boxy does seem to throw away my
script tags. After much debugging I found the culprit to be in
setContent()
jQuery separates the script tags passed back in ajax and puts them at
the end. The content array it returns is an array with the first
element being the HTML returned from ajax and the 2nd element being
the script tag.
Line 369ish:
this.getInner().append(newContent);
Only seems to apply the first element. While my patch:
var inner = this.getInner();
for (var i=0; i<newContent.length; i++) {
inner.append(newContent[i]);
}