Convert script to snake_case
This commit is contained in:
parent
8a0658c604
commit
2111d850aa
1 changed files with 6 additions and 6 deletions
|
@ -1013,13 +1013,13 @@ class MCI_Footnotes_Task {
|
||||||
// Start internal script.
|
// Start internal script.
|
||||||
?>
|
?>
|
||||||
<script content="text/javascript">
|
<script content="text/javascript">
|
||||||
function footnoteTooltipShow(footnoteTooltipId) {
|
function footnote_tooltip_show(footnote_tooltip_id) {
|
||||||
document.getElementById(footnoteTooltipId).classList.remove('hidden');
|
document.getElementById(footnote_tooltip_id).classList.remove('hidden');
|
||||||
document.getElementById(footnoteTooltipId).classList.add('shown');
|
document.getElementById(footnote_tooltip_id).classList.add('shown');
|
||||||
}
|
}
|
||||||
function footnoteTooltipHide(footnoteTooltipId) {
|
function footnote_tooltip_hide(footnote_tooltip_id) {
|
||||||
document.getElementById(footnoteTooltipId).classList.remove('shown');
|
document.getElementById(footnote_tooltip_id).classList.remove('shown');
|
||||||
document.getElementById(footnoteTooltipId).classList.add('hidden');
|
document.getElementById(footnote_tooltip_id).classList.add('hidden');
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<?php
|
<?php
|
||||||
|
|
Reference in a new issue