3802249ec4
- Bugfix: Changed tooltip class to be unique - Bugfix: Changed superscript styling to not manipulate the line height - Bugfix: Changed styling of the footnotes text in the reference container to avoid line breaks - Updated: Reformatted code - Added: new settings tab for custom CSS settings git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@957947 b8457f37-d9ea-0310-8a92-e5e31aec5664
23 lines
No EOL
792 B
HTML
Executable file
23 lines
No EOL
792 B
HTML
Executable file
<a href="#footnote_plugin_reference_[[FOOTNOTE INDEX]]"
|
|
name="footnote_plugin_tooltip_[[FOOTNOTE INDEX]]"
|
|
id="footnote_plugin_tooltip_[[FOOTNOTE INDEX]]"
|
|
class="footnote_plugin_tooltip_text"
|
|
onclick="footnote_expand_reference_container('#footnote_plugin_reference_[[FOOTNOTE INDEX]]');">
|
|
<sup>[[FOOTNOTE INDEX]])</sup>
|
|
</a>
|
|
<span class="footnote_tooltip" id="footnote_plugin_tooltip_text_[[FOOTNOTE INDEX]]">
|
|
[[FOOTNOTE TEXT]]
|
|
</span>
|
|
|
|
<script type="text/javascript">
|
|
jQuery("#footnote_plugin_tooltip_[[FOOTNOTE INDEX]]").tooltip({
|
|
tip: "#footnote_plugin_tooltip_text_[[FOOTNOTE INDEX]]",
|
|
tipClass: "footnote_tooltip",
|
|
effect: "fade",
|
|
fadeOutSpeed: 100,
|
|
predelay: 400,
|
|
position: "top right",
|
|
relative: true,
|
|
offset: [10, 10]
|
|
});
|
|
</script> |