diff --git a/footnotes/dialogs/footnotes.js b/footnotes/dialogs/footnotes.js index c3f1285..8a0975a 100644 --- a/footnotes/dialogs/footnotes.js +++ b/footnotes/dialogs/footnotes.js @@ -11,7 +11,7 @@ CKEDITOR.dialog.add( 'footnotesDialog', function( editor ) { editor_name: false, // Basic properties of the dialog window: title, minimum size. title: 'Manage Footnotes', - minWidth: 400, + minWidth: 500, minHeight: 200, footnotes_el: false, @@ -63,7 +63,7 @@ CKEDITOR.dialog.add( 'footnotesDialog', function( editor ) { $footnotes.find('li').each(function(){ $item = jQuery(this); var footnote_id = $item.attr('data-footnote-id'); - radios += '
  • '; + radios += '
  • '; }); $el.children('label,div').css('display', 'none');