ff369dbb by Jeff Balicki

dd

1 parent be11c449
...@@ -139,7 +139,7 @@ function getInputFormValues($validation, $name) ...@@ -139,7 +139,7 @@ function getInputFormValues($validation, $name)
139 <td>Text Version</td> 139 <td>Text Version</td>
140 <td> 140 <td>
141 <textarea name="<?php echo $lang; ?>_text" class="wide-input-field text_verson" rows="10" style="width: 100%;"><?php echo getInputFormValues($validation, $lang . '_text'); ?> 141 <textarea name="<?php echo $lang; ?>_text" class="wide-input-field text_verson" rows="10" style="width: 100%;"><?php echo getInputFormValues($validation, $lang . '_text'); ?>
142 </textarea><?php echo $validation->form_error($lang . '_text'); ?> 142 </textarea><?php echo $validation->form_error($lang . '_text'); ?>
143 </td> 143 </td>
144 </tr> 144 </tr>
145 <tr> 145 <tr>
...@@ -300,6 +300,13 @@ function getInputFormValues($validation, $name) ...@@ -300,6 +300,13 @@ function getInputFormValues($validation, $name)
300 $('#fr_html_ifr').contents().find('td').each(function() { 300 $('#fr_html_ifr').contents().find('td').each(function() {
301 $(this).removeAttr('style'); 301 $(this).removeAttr('style');
302 }); 302 });
303 e.preventDefault();
304 $('#en_html_ifr').contents().find('table').each(function() {
305 $(this).removeAttr('style');
306 });
307 $('#en_html_ifr').contents().find('td').each(function() {
308 $(this).removeAttr('style');
309 });
303 310
304 311
305 $('#fr_html_ifr').contents().find('td:last-child').each(function() { 312 $('#fr_html_ifr').contents().find('td:last-child').each(function() {
......