From eebacf62f17059dc66d1b2ad118de9a6df4dcaf9 Mon Sep 17 00:00:00 2001 From: Andy Kirk Date: Mon, 21 Jul 2014 16:28:44 +0100 Subject: [PATCH] Fixed footnote html and styling --- footnotes/dialogs/footnotes.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/footnotes/dialogs/footnotes.js b/footnotes/dialogs/footnotes.js index da8decd..c3f1285 100644 --- a/footnotes/dialogs/footnotes.js +++ b/footnotes/dialogs/footnotes.js @@ -29,7 +29,7 @@ CKEDITOR.dialog.add( 'footnotesDialog', function( editor ) { type: 'textarea', id: 'new_footnote', 'class': 'footnote_text', - label: 'New Footnote', + label: 'New footnote:', inputStyle: 'height: 100px', }, { @@ -54,7 +54,7 @@ CKEDITOR.dialog.add( 'footnotesDialog', function( editor ) { if ($footnotes.length > 0) { if ($el.find('p').length == 0) { - $el.append('

OR: Choose footnote:

    '); + $el.append('

    OR: Choose footnote:

      '); } else { $el.find('ol').empty(); } @@ -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 += '
    1. '; + radios += '
    2. '; }); $el.children('label,div').css('display', 'none');