Ticket #6414: 6414.patch
File 6414.patch, 540 bytes (added by , 13 years ago) |
---|
-
_source/plugins/stylescombo/plugin.js
198 198 var typeA = styleA.type, 199 199 typeB = styleB.type; 200 200 201 return typeA == typeB ? 0:201 return typeA == typeB ? (styleA._name > styleB._name ? 1 : -1 ) : 202 202 typeA == CKEDITOR.STYLE_OBJECT ? -1 : 203 203 typeB == CKEDITOR.STYLE_OBJECT ? 1 : 204 204 typeB == CKEDITOR.STYLE_BLOCK ? 1 :