SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit ccc1dfde authored by Jean-Sébastien Caux's avatar Jean-Sébastien Caux
Browse files

Correct bug: toggle abs in scipost_physics_recent

parent 4e2ab6fc
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,19 @@
{% block pagetitle %}: SciPost Physics: recent{% endblock pagetitle %}
{% block headsup %}
<script>
$(document).ready(function(){
$(".publicationAbstract").hide();
$(".toggleAbstractButton").click(function(){
$(this).parent("li").parent("ul").siblings("p.publicationAbstract").toggle();
});
});
</script>
{% endblock headsup %}
{% block bodysup %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment