Skip to content

Commit

Permalink
Fix broken link in toggle button
Browse files Browse the repository at this point in the history
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
  • Loading branch information
MauricioFauth committed Dec 10, 2017
1 parent 8b2db0e commit 93726af
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions templates/toggle_button.twig
@@ -1,4 +1,3 @@
<!-- TOGGLE START -->
<div class='wrapper toggleAjax hide'>
<div class='toggleButton'>
<div title="{% trans 'Click to toggle' %}" class='container {{ state }}'>
Expand All @@ -7,12 +6,12 @@
<tbody>
<tr>
<td class='toggleOn'>
<span class='hide'>{{ link_on }}</span>
<span class='hide'>{{ link_on|raw }}</span>
<div>{{ toggle_on }}</div>
</td>
<td><div>&nbsp;</div></td>
<td class='toggleOff'>
<span class='hide'>{{ link_off }}</span>
<span class='hide'>{{ link_off|raw }}</span>
<div>{{ toggle_off }}</div>
</td>
</tr>
Expand All @@ -23,4 +22,3 @@
</div>
</div>
</div>
<!-- TOGGLE END -->

0 comments on commit 93726af

Please sign in to comment.