Skip to content

Commit

Permalink
Update class to hide element
Browse files Browse the repository at this point in the history
  • Loading branch information
eheinrich committed Sep 20, 2019
1 parent d79dd6d commit de9d0d9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ <h2>{{ sca.grouper.name|cut:'0' }}</h2>
<td>
<a class="showAbstract">
{{ proposal.title }}
<span class="title hidden">{{ proposal.title }}</span>
<span class="abstract hidden">{{ proposal.abstract }}</span>
<span class="title d-none">{{ proposal.title }}</span>
<span class="abstract d-none">{{ proposal.abstract }}</span>
</a>
</td>
<td>{% for semester in proposal.semester_set.all.distinct %} {{ semester }} {% endfor %}</td>
Expand Down Expand Up @@ -81,8 +81,8 @@ <h2>{{ sca.grouper.name|cut:'0' }}</h2>
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title" id="myModalLabel"></h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
</div>
<div class="modal-body" id="myModalBody">
</div>
Expand Down

0 comments on commit de9d0d9

Please sign in to comment.