Skip to content

Commit

Permalink
[WebUI IntelliHome#7] Modified class for deleting row of elements
Browse files Browse the repository at this point in the history
  • Loading branch information
skullbocks committed Aug 19, 2014
1 parent 28c9410 commit 4049337
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/templates/components/nodes_table.html.ep
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<td class="node-type <%= $_->type %>"><%= $_->type %></td>
<td class="node-room"><%= $_->room %></td>
<td class="node-description"><%= $_->description %></td>
<td><a href="#" class="delete-node"><span class="glyphicon glyphicon-trash"></span></a></td>
<td><a href="#" class="delete-row" data-type="node"><span class="glyphicon glyphicon-trash"></span></a></td>
</tr>
% }
% }
Expand Down
2 changes: 1 addition & 1 deletion assets/templates/components/rooms_table.html.ep
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<td class="room-location"><%= $_->location %></td>
<td class="room-description"><%= $_->description %></td>
<td class="room-notes"><%= $_->notes %></td>
<td><a href="#" class="delete-room"><span class="glyphicon glyphicon-trash"></span></a></td>
<td><a href="#" class="delete-row" data-type="room"><span class="glyphicon glyphicon-trash"></span></a></td>
</tr>
% }
% }
Expand Down

0 comments on commit 4049337

Please sign in to comment.