Fix tooltips not activated in AjaxPage

This commit is contained in:
Molkobain
2021-03-05 12:33:24 +01:00
parent 18d4685007
commit bbbc5e966b

View File

@@ -57,25 +57,29 @@
{{ sJsInlineOnDomReady|raw }}
{% endfor %}
}
});
};
fLoadScript{{ sId }}();
} else {
{% for sJsInlineOnDomReady in aPage.aJsInlineOnDomReady %}
{{ sJsInlineOnDomReady|raw }}
{% endfor %}
}
</script>
{% endblock %}
{% else %}
{% block iboPageJsInlineOnDomReady %}
{% for sJsInlineOnDomReady in aPage.aJsInlineOnDomReady %}
<script type="text/javascript">
{{ sJsInlineOnDomReady|raw }}
</script>
{% endfor %}
{% endblock %}
{% endif %}
});
};
fLoadScript{{ sId }}();
} else
{
{% for sJsInlineOnDomReady in aPage.aJsInlineOnDomReady %}
{{ sJsInlineOnDomReady|raw }}
{% endfor %}
}
</script>
{% endblock %}
{% endif %}
{% block iboPageJsInlineOnDomReady %}
{% for sJsInlineOnDomReady in aPage.aJsInlineOnDomReady %}
<script type="text/javascript">
{{ sJsInlineOnDomReady|raw }}
</script>
{% endfor %}
<script type="application/javascript">
CombodoTooltip.InitAllNonInstantiatedTooltips($('body'));
</script>
{% endblock %}
{% if aDeferredBlocks is not empty %}
{# TODO 3.0.0 #}