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; }