Ticket #5552: 5552.patch
File 5552.patch, 820 bytes (added by , 15 years ago) |
---|
-
_source/plugins/dialog/plugin.js
2023 2023 attributes = ( attributesArg && attributesArg.call ? attributesArg( elementDefinition ) : attributesArg ) || {}, 2024 2024 innerHTML = ( contentsArg && contentsArg.call ? contentsArg.call( this, dialog, elementDefinition ) : contentsArg ) || '', 2025 2025 domId = this.domId = attributes.id || CKEDITOR.tools.getNextNumber() + '_uiElement', 2026 id = this.id = elementDefinition.id ,2026 id = this.id = elementDefinition.id ? elementDefinition.id : 'cke_' + CKEDITOR.tools.getNextNumber(),, 2027 2027 i; 2028 2028 2029 2029 // Set the id, a unique id is required for getElement() to work.