Changeset 7458 for CKEditor/trunk
- Timestamp:
- 04/06/12 18:20:14 (14 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/_source/plugins/colordialog/dialogs/colordialog.js
r7446 r7458 267 267 268 268 // Create the last row. 269 var oRow = table.$.insertRow(-1) ; 269 var oRow = new $el( table.$.insertRow( -1 ) ) ; 270 oRow.setAttribute( 'role', 'row' ); 270 271 271 272 // Create the gray scale colors cells. 272 273 for ( var n = 0 ; n < 6 ; n++ ) 273 274 { 274 appendColorCell( oRow , '#' + aColors[n] + aColors[n] + aColors[n] ) ;275 appendColorCell( oRow.$, '#' + aColors[n] + aColors[n] + aColors[n] ) ; 275 276 } 276 277 … … 278 279 for ( var i = 0 ; i < 12 ; i++ ) 279 280 { 280 appendColorCell( oRow , '#000000' ) ;281 appendColorCell( oRow.$, '#000000' ) ; 281 282 } 282 283 }
Note: See TracChangeset
for help on using the changeset viewer.
