fixed bug with number only tags breaking js

This commit is contained in:
albert
2011-10-26 18:39:18 -04:00
parent 5a52ccbbc9
commit 9f21630c33
8 changed files with 13 additions and 9 deletions

View File

@@ -2,7 +2,7 @@
<div class="index">
<h1>Bans</h1>
<table class="striped">
<table class="striped" width="100%">
<thead>
<tr>
<th>User</th>

View File

@@ -3,7 +3,7 @@
<h1>Show Ban</h1>
<ul>
<li><strong>User</strong>: <%= @ban.user.name %></li>
<li><strong>Expires</strong>: <%= @ban.expires_at %></li>
<li><strong>Expires</strong>: <%= compact_time @ban.expires_at %></li>
<li><strong>Reason</strong>: <%= @ban.reason %></li>
</ul>
</div>