Skip to content

Commit

Permalink
Apply styling to all unpublished entries, fixes #1
Browse files Browse the repository at this point in the history
  • Loading branch information
nilshoerrmann committed Jun 7, 2011
1 parent 1322449 commit a1e59cf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions assets/unpublishedfilter.publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@
if(title == Symphony.Language.get('published')) {

// Find unpublished entries
table.find('tr td:eq(' + index + ')').each(function() {
var cell = $(this),
table.find('tr').each(function() {
var row = $(this),
cell = row.find('td:eq(' + index + ')'),
text = $.trim(cell.text());

// Gray out row
Expand Down

0 comments on commit a1e59cf

Please sign in to comment.