Changeset 6141
- Timestamp:
- 11/30/10 18:15:49 (2 years ago)
- Location:
- CKEditor/trunk
- Files:
-
- 2 edited
-
CHANGES.html (modified) (1 diff)
-
_source/plugins/colordialog/dialogs/colordialog.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/CHANGES.html
r6140 r6141 66 66 <li><a href="http://dev.ckeditor.com/ticket/5894">#5894</a> : Custom buttons added at bottom of dialogs don't expand to include their contents.</li> 67 67 <li><a href="http://dev.ckeditor.com/ticket/6513">#6513</a> : Wrong ARIA attributes created on list options of "Styles" rich combo.</li> 68 <li><a href="http://dev.ckeditor.com/ticket/6150">#6150</a> : [Safari] Color dialog was broken.</li> 68 69 </ul> 69 70 <h3> -
CKEditor/trunk/_source/plugins/colordialog/dialogs/colordialog.js
r5949 r6141 237 237 var table = new $el( 'table' ); 238 238 createColorTable(); 239 var html = table.getHtml(); 239 240 240 241 var numbering = function( id ) … … 271 272 { 272 273 type : 'html', 273 html : '<table role="listbox" aria-labelledby="' + tableLabelId + '" onmouseout="CKEDITOR.tools.callFunction( ' + onMouseout + ' );">' + table.getHtml() + '</table>' + 274 '<span id="' + tableLabelId + '" class="cke_voice_label">' + lang.options +'</span>', 274 html : '<table role="listbox" aria-labelledby="' + tableLabelId + '" onmouseout="CKEDITOR.tools.callFunction( ' + onMouseout + ' );">' + 275 ( !CKEDITOR.env.webkit ? html : '' ) + 276 '</table><span id="' + tableLabelId + '" class="cke_voice_label">' + lang.options +'</span>', 275 277 onLoad : function() 276 278 { 277 279 var table = CKEDITOR.document.getById( this.domId ); 278 280 table.on( 'mouseover', updateHighlight ); 281 // In WebKit, the table content must be inserted after this event call (#6150) 282 CKEDITOR.env.webkit && table.setHtml( html ); 279 283 }, 280 284 focus: function()
Note: See TracChangeset
for help on using the changeset viewer.
