Ticket #3725: 3725_3.patch
File 3725_3.patch, 804 bytes (added by , 14 years ago) |
---|
-
_source/plugins/floatpanel/plugin.js
15 15 16 16 function getPanel( editor, doc, parentElement, definition, level ) 17 17 { 18 // Generates the panel key: docId-eleId-skinName-langDir[- CSSs][-level]18 // Generates the panel key: docId-eleId-skinName-langDir[-uiColor][-CSSs][-level] 19 19 var key = 20 20 doc.getUniqueId() + 21 21 '-' + parentElement.getUniqueId() + 22 22 '-' + editor.skinName + 23 23 '-' + editor.lang.dir + 24 ( ( editor.uiColor && ( '-' + editor.uiColor ) ) || '' ) + 24 25 ( ( definition.css && ( '-' + definition.css ) ) || '' ) + 25 26 ( ( level && ( '-' + level ) ) || '' ); 26 27