3546c9e4 by Jeff Balicki

dd

1 parent 72c22b73
...@@ -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>
...@@ -309,6 +309,14 @@ function getInputFormValues($validation, $name) ...@@ -309,6 +309,14 @@ function getInputFormValues($validation, $name)
309 $(this).removeAttr('style'); 309 $(this).removeAttr('style');
310 }); 310 });
311 311
312 $('#fr_html_ifr').contents().find('tr').each(function() {
313 $(this).removeAttr('style');
314 });
315
316 $('#en_html_ifr').contents().find('tr').each(function() {
317 $(this).removeAttr('style');
318 });
319
312 $('#fr_html_ifr').contents().find('td').each(function() { 320 $('#fr_html_ifr').contents().find('td').each(function() {
313 $(this).removeAttr('style'); 321 $(this).removeAttr('style');
314 }); 322 });
......