Changeset 6287
- Timestamp:
- 01/02/11 16:27:18 (2 years ago)
- Location:
- CKEditor/trunk
- Files:
-
- 2 edited
-
CHANGES.html (modified) (1 diff)
-
_source/plugins/wysiwygarea/plugin.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/CHANGES.html
r6285 r6287 67 67 <li><a href="http://dev.ckeditor.com/ticket/6278">#6278</a> : Comments were moving on top of BR tags.</li> 68 68 <li><a href="http://dev.ckeditor.com/ticket/6645">#6645</a> : Allow to configure if " (double quotes) should be encoded in the contents.</li> 69 <li><a href="http://dev.ckeditor.com/ticket/6336">#6336</a> : IE: clicking in an input type="submit" button submitted the form.</li> 69 70 </ul> 70 71 <h3> -
CKEditor/trunk/_source/plugins/wysiwygarea/plugin.js
r6252 r6287 618 618 }); 619 619 620 // Prevent automatic submission in IE #6336 621 CKEDITOR.env.ie && domDocument.on( 'click', function( evt ) 622 { 623 var element = evt.data.getTarget(); 624 if ( element.is( 'input' ) ) 625 { 626 var type = element.getAttribute( 'type' ); 627 if ( type == 'submit' || type == 'reset' ) 628 evt.data.preventDefault() 629 } 630 }); 631 620 632 // Gecko/Webkit need some help when selecting control type elements. (#3448) 621 633 if ( !( CKEDITOR.env.ie || CKEDITOR.env.opera ) )
Note: See TracChangeset
for help on using the changeset viewer.
