dd
Showing
1 changed file
with
11 additions
and
1 deletions
| ... | @@ -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> |
| ... | @@ -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 | }); | ... | ... |
-
Please register or sign in to post a comment