72c22b73 by Jeff Balicki

dd

1 parent c98817a3
......@@ -295,6 +295,16 @@ function getInputFormValues($validation, $name)
e.preventDefault();
$('#fr_html_ifr').contents().find('img').each(function() {
$(this).removeAttr('height');
$(this).removeAttr('width');
});
$('#en_html_ifr').contents().find('img').each(function() {
$(this).removeAttr('height');
$(this).removeAttr('width');
});
$('#fr_html_ifr').contents().find('table').each(function() {
$(this).removeAttr('style');
});
......