IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
90 | 90 | |
91 | 91 | CKEDITOR.style = function( styleDefinition, variablesValues ) |
92 | 92 | { |
| 93 | // Inline style text as attribute should be converted |
| 94 | // to styles object. |
| 95 | var attrs = styleDefinition.attributes; |
| 96 | if ( attrs && attrs.style ) |
| 97 | { |
| 98 | styleDefinition.styles = CKEDITOR.tools.extend( {}, |
| 99 | styleDefinition.styles, parseStyleText( attrs.style ) ); |
| 100 | delete attrs.style; |
| 101 | } |
| 102 | |
93 | 103 | if ( variablesValues ) |
94 | 104 | { |
95 | 105 | styleDefinition = CKEDITOR.tools.clone( styleDefinition ); |