Changeset 5623
- Timestamp:
- 06/17/10 11:51:29 (3 years ago)
- Location:
- CKEditor/branches/features/adobeair/_source
- Files:
-
- 4 edited
-
plugins/editingblock/plugin.js (modified) (1 diff)
-
plugins/sourcearea/plugin.js (modified) (1 diff)
-
plugins/wysiwygarea/plugin.js (modified) (1 diff)
-
themes/default/theme.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/branches/features/adobeair/_source/plugins/editingblock/plugin.js
r5613 r5623 96 96 event.removeListener(); 97 97 98 // Redirect the focus into editor for webkit. (#5713)99 CKEDITOR.env.webkit && editor.container.on( 'focus', function()100 {101 editor.focus();102 });103 104 98 if ( editor.config.startupFocus ) 105 99 editor.focus(); -
CKEditor/branches/features/adobeair/_source/plugins/sourcearea/plugin.js
r5613 r5623 35 35 { 36 36 dir : 'ltr', 37 tabIndex : CKEDITOR.env.webkit ? -1 :editor.tabIndex,37 tabIndex : editor.tabIndex, 38 38 'role' : 'textbox', 39 39 'aria-label' : editor.lang.editorTitle.replace( '%1', editor.name ) -
CKEditor/branches/features/adobeair/_source/plugins/wysiwygarea/plugin.js
r5622 r5623 321 321 // trigger iframe's 'load' event. 322 322 ' src="' + ( CKEDITOR.env.air ? editor._.air_bootstrap_frame_url : CKEDITOR.env.ie ? 'javascript:void(function(){' + encodeURIComponent( srcScript ) + '}())' : '' ) + '"' + 323 ' " tabIndex="' + ( CKEDITOR.env.webkit? -1 : editor.tabIndex )+ '"' +323 ' tabIndex="' + editor.tabIndex + '"' + 324 324 ' allowTransparency="true"' + 325 325 '></iframe>' ); -
CKEditor/branches/features/adobeair/_source/themes/default/theme.js
r5613 r5623 119 119 ' title="', ( CKEDITOR.env.gecko ? ' ' : '' ), '"' + 120 120 ' lang="', editor.langCode, '"' + 121 ( CKEDITOR.env.webkit? ' tabindex="' + tabIndex + '"' : '' ) +122 121 ' role="application"' + 123 122 ' aria-labelledby="cke_', name, '_arialbl"' +
Note: See TracChangeset
for help on using the changeset viewer.
