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.
|
||||
?>
|
||||
<script content="text/javascript">
|
||||
function footnoteTooltipShow(footnoteTooltipId) {
|
||||
document.getElementById(footnoteTooltipId).classList.remove('hidden');
|
||||
document.getElementById(footnoteTooltipId).classList.add('shown');
|
||||
function footnote_tooltip_show(footnote_tooltip_id) {
|
||||
document.getElementById(footnote_tooltip_id).classList.remove('hidden');
|
||||
document.getElementById(footnote_tooltip_id).classList.add('shown');
|
||||
}
|
||||
function footnoteTooltipHide(footnoteTooltipId) {
|
||||
document.getElementById(footnoteTooltipId).classList.remove('shown');
|
||||
document.getElementById(footnoteTooltipId).classList.add('hidden');
|
||||
function footnote_tooltip_hide(footnote_tooltip_id) {
|
||||
document.getElementById(footnote_tooltip_id).classList.remove('shown');
|
||||
document.getElementById(footnote_tooltip_id).classList.add('hidden');
|
||||
}
|
||||
</script>
|
||||
<?php
|
||||
|
|
Reference in a new issue