Skip to content
This repository has been archived by the owner on Aug 18, 2021. It is now read-only.

Commit

Permalink
Added a proper closing table row to the populateTable function
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Buecheler <[email protected]>
  • Loading branch information
cwbuecheler committed Feb 21, 2014
1 parent 83c7662 commit 22b5f55
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion public/javascripts/global.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ function populateTable() {
tableContent += '<tr>';
tableContent += '<td><a href="#" class="linkshowuser" rel="' + this.username + '" title="Show Details">' + this.username + '</td>';
tableContent += '<td>' + this.email + '</td>';
tableContent += '<td><a href="#" class="linkdeleteuser" rel="' + this._id + '">delete</a></td>'
tableContent += '<td><a href="#" class="linkdeleteuser" rel="' + this._id + '">delete</a></td>';
tableContent += '</tr>';
});

// Inject the whole content string into our existing HTML table
Expand Down

0 comments on commit 22b5f55

Please sign in to comment.