X-Git-Url: https://scm.cri.ensmp.fr/git/ckeditor.git/blobdiff_plain/a1afd8bc466a171d842f4a49a278773a9820e9c3..e7f8fb547940c134de50db80ffaf54be1135ca7b:/skins/ckeditor/plugins/plinn_styles/plugin.js diff --git a/skins/ckeditor/plugins/plinn_styles/plugin.js b/skins/ckeditor/plugins/plinn_styles/plugin.js index 742a40a..835b08b 100644 --- a/skins/ckeditor/plugins/plinn_styles/plugin.js +++ b/skins/ckeditor/plugins/plinn_styles/plugin.js @@ -38,18 +38,18 @@ PlinnStylesCombo.prototype.init = function() { for (i=0 ; i < this.styles.length ; i++) { style = this.styles[i]; this.add(style.name, - '
' + - style.name + - '
', - style.name - ); + '
' + + style.name + + '
', + style.name + ); } }; PlinnStylesCombo.prototype.onClick = function(value) { this.editor.focus(); this.editor.fire('saveSnapshot'); - var style = this.styles[value] + var style = this.styles[value]; var className = style.className; var ranges = this.editor.getSelection().getRanges(); var element = this.editor.elementPath().lastElement;