Skip to content

Commit

Permalink
UI: Add feed ID in article container
Browse files Browse the repository at this point in the history
  • Loading branch information
Alkarex committed Aug 21, 2015
1 parent 422a9e1 commit c75863f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/views/index/normal.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ if (!empty($this->entries)) {
?></div><?php
$display_others = false;
}
?><div class="flux<?php echo !$this->entry->isRead() ? ' not_read' : ''; ?><?php echo $this->entry->isFavorite() ? ' favorite' : ''; ?>" id="flux_<?php echo $this->entry->id(); ?>"><?php
?><div class="flux<?php echo !$this->entry->isRead() ? ' not_read' : '';
?><?php echo $this->entry->isFavorite() ? ' favorite' : '';
?>" id="flux_<?php echo $this->entry->id();
?>" data-feed="<?php echo $this->feed->id();
?>"><?php

$this->renderHelper('index/normal/entry_header');

Expand Down

0 comments on commit c75863f

Please sign in to comment.