Ticket #5338: 5338.patch
File 5338.patch, 538 bytes (added by , 13 years ago) |
---|
-
_source/plugins/htmldataprocessor/plugin.js
201 201 202 202 title : function( element ) 203 203 { 204 element.children[ 0 ].value = element.attributes[ '_cke_title' ]; 204 var titleText = element.children[ 0 ]; 205 titleText && ( titleText.value = element.attributes[ '_cke_title' ] || '' ); 205 206 } 206 207 }, 207 208