Is there a way to change the default background color of my table row back to normal after closing the modal window that appears when I click on it?
<tr class='revisions'>
<td>{{ $revision->date_of_revision->format('d.m.Y') }}
</td>
<td class="text-right">
<a
data-toggle="modal"
data-target="#revisionEdit"
class='btn btn-warning revisionEdit'>
<span class="glyphicon glyphicon-pencil"></span>
</a>
</td>
</tr>