Changeset 337
- Timestamp:
- 09/22/05 13:30:23 (8 years ago)
- Location:
- trunk/examples
- Files:
-
- 2 modified
-
ext_example-body.html (modified) (1 diff)
-
ext_example-dest.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/examples/ext_example-body.html
r336 r337 180 180 } 181 181 function frame_onSubmit(){ 182 document.getElementById('myTextarea0').value = document.getElementById('myTextarea0').value.replace(/^[\r\n]+|\s+$/, '') 182 183 window.parent.menu.document.getElementById('myTextarea0').value = document.getElementById('myTextarea0').value; 183 184 if (_oldSubmitHandler != null) { -
trunk/examples/ext_example-dest.php
r330 r337 7 7 </body> 8 8 <?php 9 if (get_magic_quotes_gpc()) { 10 $_REQUEST = array_map('stripslashes',$_REQUEST); 11 } 9 12 foreach($_REQUEST as $key=>$value){ 10 13 if(substr($key,0,10) == 'myTextarea') {
