Browse Source

Revert "Temporarily remove custom footnote labels."

This reverts commit 7128ba2fe7.
config_filter 8.x-1.0-alpha2
Alexander O'Neill 6 years ago
parent
commit
ec3606bc59
  1. 5
      bibcite_footnotes.module
  2. 13
      js/plugins/reference_footnotes/dialogs/footnotes.js

5
bibcite_footnotes.module

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

13
js/plugins/reference_footnotes/dialogs/footnotes.js

@ -20,6 +20,17 @@
if (isEdit) if (isEdit)
this.setValue(element.getText()); 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'));
}
} }
], ],
} }
@ -32,7 +43,7 @@
this.setupContent( this.realObj ); this.setupContent( this.realObj );
}, },
onOk : function() { onOk : function() {
CKEDITOR.plugins.reference_footnotes.createFootnote( editor, this.realObj, this.getValueOf('info', 'reference_footnote'), null); CKEDITOR.plugins.reference_footnotes.createFootnote( editor, this.realObj, this.getValueOf('info', 'reference_footnote'), this.getValueOf('info', 'value'));
delete this.fakeObj; delete this.fakeObj;
delete this.realObj; delete this.realObj;
} }

Loading…
Cancel
Save