Browse Source

Temporarily remove custom footnote labels.

config_filter
Alexander O'Neill 6 years ago
parent
commit
7128ba2fe7
  1. 5
      bibcite_footnotes.module
  2. 13
      js/plugins/reference_footnotes/dialogs/footnotes.js

5
bibcite_footnotes.module

@ -82,7 +82,6 @@ function bibcite_footnotes_theme_footnote_list($footnotes) {
$str .= $fn['text'] . "</li>\n";
}
}
$str .= "</ul>\nThat's all, folks";
return $str;
}
return $str;
}

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

Loading…
Cancel
Save