72c22b73 by Jeff Balicki

dd

1 parent c98817a3
...@@ -295,6 +295,16 @@ function getInputFormValues($validation, $name) ...@@ -295,6 +295,16 @@ function getInputFormValues($validation, $name)
295 295
296 e.preventDefault(); 296 e.preventDefault();
297 297
298 $('#fr_html_ifr').contents().find('img').each(function() {
299 $(this).removeAttr('height');
300 $(this).removeAttr('width');
301 });
302
303 $('#en_html_ifr').contents().find('img').each(function() {
304 $(this).removeAttr('height');
305 $(this).removeAttr('width');
306 });
307
298 $('#fr_html_ifr').contents().find('table').each(function() { 308 $('#fr_html_ifr').contents().find('table').each(function() {
299 $(this).removeAttr('style'); 309 $(this).removeAttr('style');
300 }); 310 });
......