PluginProbe
Easy Footnotes / 1.1.2
Easy Footnotes v1.1.2
trunk 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.10 1.1.11 1.1.12 1.1.13 1.1.14 1.1.2 All 32 releases
easy-footnotes / assets / js / easy-footnotes-admin.js

easy-footnotes-admin.js in Easy Footnotes 1.1.2, at assets/js/easy-footnotes-admin.js

13 lines 548 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 jQuery(function() {
2
3 jQuery("input[name=hide_easy_footnote_after_posts]").click(function() {
4 // only show the "Show on Front page" option when the user has decided NOT to hide the footnotes from the bottom of the posts.
5 // jQuery("#easy_footnote_on_front").toggle(!this.checked);
6
7 // Disable the "Show on Front page" option when the user has decided NOT to hide the footnotes from the bottom of the posts.
8 jQuery("input[name=show_easy_footnote_on_front]").attr('disabled',this.checked)
9 });
10
11 });
12
13