2021-03-02 03:09:34 +00:00
<!-- <?php//for docblock, @see MCI_Footnotes_Template::process_template()
/**
* Plain JavaScript reference container start and end without scroll script.
*
* @since 2.5.6
* @type object
* @lastmodified 2021-02-20T0252+0100
*
* - Bugfix: Reference container: optional alternative expanding and collapsing without jQuery for use with hard links, thanks to @hopper87it @pkverma99 issue reports.
*
* @since 2.5.6
*
* @reporter @hopper87it
* @link https://wordpress.org/support/topic/footnotes-wp-rocket/
2021-03-18 10:53:57 +00:00
*
2021-03-02 03:09:34 +00:00
* @reporter @pkverma99
* @link https://wordpress.org/support/topic/footnotes-wp-rocket/#post-14076188
*
2021-03-18 10:53:57 +00:00
* The heavy jQuery Core library from WordPress must not be deferred for
2021-03-02 03:09:34 +00:00
* the jQuery reference container to work, and is detrimental to page speed.
* This alternative works with plain JS but does not support scroll animation.
* The plugin is set to enable hard links when this option is enabled.
2021-03-18 10:53:57 +00:00
*
* - Bugfix: Reference container: apply web semantics to improve readability for assistive technologies, thanks to @derivationfr issue report and code contribution.
*
2021-03-19 23:58:23 +00:00
* @since 2.5.11
2021-03-18 10:53:57 +00:00
*
* @contributor @derivationfr
* @link https://wordpress.org/support/topic/enhance-accesibility-by-using-instead-of/
* @link https://a11y-101.com/development/tables
*
* For assistive technologies to improve accessibility by reading tables in a meaningful manner,
* the tables must be marked up properly using table header elements for header rows and header
* columns as applicable.
* The table caption must also be present for screen readers but may be hidden to sighted users.
2021-03-23 04:02:07 +00:00
*
* - Bugfix: Backlinks: reflect scroll functions down/up differentiation across the template set, thanks to @bogosavljev bug report.
*
* @reporter @bogosavljef
* @link https://wordpress.org/support/topic/compatibility-issue-with-wpforms/#post-14214720
2021-03-02 03:09:34 +00:00
*/?>
-->
< div
class="speaker-mute footnotes_reference_container"
>
< div
class="footnote_container_prepare"
>< [[element]]
>< span
2021-03-18 10:53:57 +00:00
role="button"
tabindex="0"
2021-03-02 03:09:34 +00:00
id="footnotes_container_label_expand_[[post_id]]_[[container_id]]"
class="footnote_reference_container_label pointer"
onclick="footnote_expand_reference_container_[[post_id]]_[[container_id]]();"
2021-03-18 18:00:42 +00:00
onkeydown="footnote_expand_reference_container_[[post_id]]_[[container_id]]();"
2021-03-23 04:02:07 +00:00
>[[name]]< /span
2021-03-02 03:09:34 +00:00
>< span
2021-03-18 18:00:42 +00:00
role="button"
tabindex="0"
2021-03-02 03:09:34 +00:00
id="footnotes_container_button_plus_[[post_id]]_[[container_id]]"
class="footnote_reference_container_collapse_button"
style="[[button-style]]"
onclick="footnote_expand_reference_container_[[post_id]]_[[container_id]]();"
2021-03-18 18:00:42 +00:00
onkeydown="footnote_expand_reference_container_[[post_id]]_[[container_id]]();"
2021-03-02 03:09:34 +00:00
>[+]< /span
>< span
2021-03-18 10:53:57 +00:00
role="button"
tabindex="0"
2021-03-02 03:09:34 +00:00
id="footnotes_container_label_collapse_[[post_id]]_[[container_id]]"
class="footnote_reference_container_label pointer"
style="display: none;"
onclick="footnote_collapse_reference_container_[[post_id]]_[[container_id]]();"
2021-03-18 18:00:42 +00:00
onkeydown="footnote_collapse_reference_container_[[post_id]]_[[container_id]]();"
2021-03-02 03:09:34 +00:00
>[[name]]< /span
>< span
2021-03-18 18:00:42 +00:00
role="button"
tabindex="0"
2021-03-02 03:09:34 +00:00
id="footnotes_container_button_minus_[[post_id]]_[[container_id]]"
class="footnote_reference_container_collapse_button"
style="display: none;"
onclick="footnote_collapse_reference_container_[[post_id]]_[[container_id]]();"
2021-03-18 18:00:42 +00:00
onkeydown="footnote_collapse_reference_container_[[post_id]]_[[container_id]]();"
2021-03-02 03:09:34 +00:00
>[− ]< /span
>< /[[element]]
>< /div
>
< div
id="footnote_references_container_[[post_id]]_[[container_id]]"
style="[[style]]"
2021-03-18 10:53:57 +00:00
>< table
2021-03-02 03:09:34 +00:00
class="footnotes_table footnote-reference-container"
2021-03-18 10:53:57 +00:00
>< caption
class="accessibility"
>[[caption]]< /caption
>
2021-03-02 03:09:34 +00:00
< tbody >
[[content]]
< / tbody >
< / table >
< / div >
< / div >
< script type = "text/javascript" >
function footnote_expand_reference_container_[[post_id]]_[[container_id]]() {
document.getElementById('footnote_references_container_[[post_id]]_[[container_id]]').style.display = "inline";
document.getElementById('footnotes_container_label_expand_[[post_id]]_[[container_id]]').style.display = "none";
document.getElementById('footnotes_container_label_collapse_[[post_id]]_[[container_id]]').style.display = "inline";
document.getElementById('footnotes_container_button_plus_[[post_id]]_[[container_id]]').style.display = "none";
document.getElementById('footnotes_container_button_minus_[[post_id]]_[[container_id]]').style.display = "inline";
}
function footnote_collapse_reference_container_[[post_id]]_[[container_id]]() {
document.getElementById('footnote_references_container_[[post_id]]_[[container_id]]').style.display = "none";
document.getElementById('footnotes_container_label_collapse_[[post_id]]_[[container_id]]').style.display = "none";
document.getElementById('footnotes_container_label_expand_[[post_id]]_[[container_id]]').style.display = "inline";
document.getElementById('footnotes_container_button_minus_[[post_id]]_[[container_id]]').style.display = "none";
document.getElementById('footnotes_container_button_plus_[[post_id]]_[[container_id]]').style.display = "inline";
}
2021-03-20 20:48:54 +00:00
function footnote_moveToReference_[[post_id]]_[[container_id]](p_str_TargetID) {
2021-03-02 03:09:34 +00:00
footnote_expand_reference_container_[[post_id]]_[[container_id]]();
}
2021-03-23 04:02:07 +00:00
function footnote_moveToAnchor_[[post_id]]_[[container_id]](p_str_TargetID) {
/* defined to keep using standard row templates */
}
2021-03-02 03:09:34 +00:00
< / script >