Changes between Version 1 and Version 3 of Ticket #7348
- Timestamp:
- Jan 28, 2013, 10:53:48 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #7348
- Property Keywords IE9 IE10 added
-
Property
Status
changed from
new
toconfirmed
-
Property
Milestone
changed from
CKEditor 3.5.3
to
-
Ticket #7348 – Description
v1 v3 5 5 To reproduce, use the following: 6 6 {{{ 7 CKEDITOR.loader.load( 'core/ajax' ); 8 setTimeout(function() { 9 var data = CKEDITOR.ajax.loadXml( '/ckeditor.tests/dt/_assets/sample.xml' ); 10 alert(data.selectSingleNode( 'list/item' )); 11 }, 1000); 7 var editor = CKEDITOR.replace( 'editor1',{ 8 extraPlugins : 'xml,ajax', 9 }); 10 11 editor.on( 'instanceReady', function( evt ) { 12 setTimeout(function() { 13 var data = CKEDITOR.ajax.loadXml( '/ckeditor/sample.xml' );//adjust path to your needs 14 alert(data.selectSingleNode( 'list/item' )); 15 }, 1000); 16 }); 12 17 }}} 13 18