8c9e7578 by Jeff Balicki

outlook fix

1 parent 26bb6a8a
......@@ -309,13 +309,34 @@ endforeach;
$("#notifications-create-new").on("submit", function(e) {
if (!codeCleaned) {
e.preventDefault();
$('#fr_html_ifr').contents().find('tr').each(function() {
$(this).removeAttr('style');
});
$('#en_html_ifr').contents().find('tr').each(function() {
$(this).removeAttr('style');
});
$('#fr_html_ifr').contents().find('table').each(function() {
$(this).removeAttr('style');
});
$('#en_html_ifr').contents().find('table').each(function() {
$(this).removeAttr('style');
});
$('#fr_html_ifr').contents().find('td').each(function() {
$(this).removeAttr('style');
});
$('#en_html_ifr').contents().find('td').each(function() {
$(this).removeAttr('style');
});
codeCleaned = true;
$(this).trigger('submit');
......