Changeset 7198
- Timestamp:
- 08/12/11 17:59:06 (22 months ago)
- Location:
- CKEditor/trunk
- Files:
-
- 2 edited
-
CHANGES.html (modified) (1 diff)
-
_source/plugins/colorbutton/plugin.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/CHANGES.html
r7197 r7198 54 54 <li><a href="http://dev.ckeditor.com/ticket/7943">#7943</a> : CSS conflict no longer appears when the page styles set the <code>float</code> property of <code>label</code> elements.</li> 55 55 <li><a href="http://dev.ckeditor.com/ticket/8016">#8016</a> : [WebKit] Flash content is not visible when previewing content.</li> 56 <li><a href="http://dev.ckeditor.com/ticket/6908">#6908</a> : Text color should always be applied to the linked text.</li> 56 57 <li>Updated the following language files:<ul> 57 58 <li><a href="http://dev.ckeditor.com/ticket/8128">#8128</a> : Italian;</li> -
CKEditor/trunk/_source/plugins/colorbutton/plugin.js
r7181 r7198 142 142 function( element ) 143 143 { 144 // Fore color style must be applied inside links instead of around it. 145 return element.getName() != 'a'|| isUnstylable( element );144 // Fore color style must be applied inside links instead of around it. (#4772,#6908) 145 return !( element.is( 'a' ) || element.getElementsByTag( 'a' ).count() ) || isUnstylable( element ); 146 146 }; 147 147
Note: See TracChangeset
for help on using the changeset viewer.
