Changeset 6862
- Timestamp:
- 05/04/11 18:21:01 (2 years ago)
- Location:
- CKEditor/branches/versions/3.6.x/_source/plugins/link
- Files:
-
- 2 edited
-
dialogs/anchor.js (modified) (1 diff)
-
plugin.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/branches/versions/3.6.x/_source/plugins/link/dialogs/anchor.js
r6766 r6862 51 51 if ( range.collapsed ) 52 52 { 53 if ( CKEDITOR. env.ie && CKEDITOR.env.version < 9)54 attributes[ 'class'] = 'cke_anchor_empty';53 if ( CKEDITOR.plugins.link.synAnchorSelector ) 54 attributes[ 'class' ] = 'cke_anchor_empty'; 55 55 56 if ( CKEDITOR. env.ie && CKEDITOR.env.version < 8)56 if ( CKEDITOR.plugins.link.emptyAnchorFix ) 57 57 { 58 58 attributes[ 'contenteditable' ] = 'false'; -
CKEditor/branches/versions/3.6.x/_source/plugins/link/plugin.js
r6852 r6862 48 48 'cursor:auto;' + 49 49 '}' + 50 ( ( CKEDITOR.env.ie && CKEDITOR.env.version > 8 ) ? 'a[name]:empty,' : '' ) + 51 'a.cke_anchor_empty' + 50 ( CKEDITOR.plugins.link.synAnchorSelector ? 'a.cke_anchor_empty' : 'a[name]:empty' ) + 52 51 '{' + 53 52 // Make empty anchor selectable on IE. … … 276 275 fakeAnchor : CKEDITOR.env.opera || CKEDITOR.env.webkit, 277 276 278 // For browsers that don't support CSS3 a[name]:empty() .279 synAnchorSelector : CKEDITOR.env.ie && CKEDITOR.env.version < 9,277 // For browsers that don't support CSS3 a[name]:empty(), note IE9 is included because of #7783. 278 synAnchorSelector : CKEDITOR.env.ie, 280 279 281 280 // For browsers that have editing issue with empty anchor.
Note: See TracChangeset
for help on using the changeset viewer.
