From 7128ba2fe7a95af4f67a20ceff9ad47bfc54a447 Mon Sep 17 00:00:00 2001 From: Alexander O'Neill Date: Fri, 15 Jun 2018 15:55:30 -0300 Subject: [PATCH] Temporarily remove custom footnote labels. --- bibcite_footnotes.module | 5 ++--- js/plugins/reference_footnotes/dialogs/footnotes.js | 13 +------------ 2 files changed, 3 insertions(+), 15 deletions(-) diff --git a/bibcite_footnotes.module b/bibcite_footnotes.module index f72a0d6..3ab6db5 100644 --- a/bibcite_footnotes.module +++ b/bibcite_footnotes.module @@ -82,7 +82,6 @@ function bibcite_footnotes_theme_footnote_list($footnotes) { $str .= $fn['text'] . "\n"; } } - $str .= "\nThat's all, folks"; - return $str; -} \ No newline at end of file + return $str; +} diff --git a/js/plugins/reference_footnotes/dialogs/footnotes.js b/js/plugins/reference_footnotes/dialogs/footnotes.js index ae525da..137504b 100644 --- a/js/plugins/reference_footnotes/dialogs/footnotes.js +++ b/js/plugins/reference_footnotes/dialogs/footnotes.js @@ -20,17 +20,6 @@ if (isEdit) this.setValue(element.getText()); } - }, - { - id: 'value', - type: 'text', - label: Drupal.t('Value :'), - labelLayout: 'horizontal', - style: 'float:left;width:100px;', - setup: function (element) { - if (isEdit) - this.setValue(element.getAttribute('value')); - } } ], } @@ -43,7 +32,7 @@ this.setupContent( this.realObj ); }, onOk : function() { - CKEDITOR.plugins.reference_footnotes.createFootnote( editor, this.realObj, this.getValueOf('info', 'reference_footnote'), this.getValueOf('info', 'value')); + CKEDITOR.plugins.reference_footnotes.createFootnote( editor, this.realObj, this.getValueOf('info', 'reference_footnote'), null); delete this.fakeObj; delete this.realObj; }