collective / collective.embeddedpage

collective.embeddedpage allows to embed remote HTML pages in Plone.
0 stars 4 forks source link

Convert html parsed data to string with html method #7

Closed rodfersou closed 5 years ago

rodfersou commented 5 years ago

This change fix the escape of characters into javascript code: before:

$('#demo').html( '<table cellpadding=\'0\' cellspacing=\'0\' border=\'0\' class=\'display\' id=\'example\'></table>' );

after:

$('#demo').html( '<table cellpadding=\'0\' cellspacing=\'0\' border=\'0\' class=\'display\' id=\'example\'></table>' );