Add toggle to show closed issues on Milestones#show

Progress on #1167
This commit is contained in:
Robert Speicher 2012-09-04 04:13:56 -04:00
parent 2b7fd29b1a
commit ace816354f
4 changed files with 19 additions and 5 deletions

View file

@ -0,0 +1,7 @@
$ ->
$('.milestone-issue-filter td[data-closed]').addClass('hide')
$('.milestone-issue-filter ul.nav li a').click ->
$('.milestone-issue-filter li').toggleClass('active')
$('.milestone-issue-filter td[data-closed]').toggleClass('hide')
false

View file

@ -11,6 +11,11 @@ table {
border-bottom: 1px solid #bbb;
text-shadow: 0 1px 1px #fff;
@include bg-dark-gray-gradient;
ul.nav {
text-shadow: none;
margin: 0;
}
}
th, td {

View file

@ -30,7 +30,7 @@ class MilestonesController < ProjectResourceController
end
def show
@issues = @milestone.issues.opened.page(params[:page]).per(40)
@issues = @milestone.issues
@users = @milestone.participants
respond_to do |format|

View file

@ -45,18 +45,20 @@
.row
.span6
%table
%table.milestone-issue-filter
%thead
%th Open Issues
%th
%ul.nav.nav-pills
%li.active.open= link_to('Open Issues', '#')
%li.all=link_to('All Issues', '#')
- @issues.each do |issue|
%tr
%td
%td{data: {closed: issue.closed}}
= link_to [@project, issue] do
%span.badge.badge-info ##{issue.id}
&ndash;
= link_to_gfm truncate(issue.title, length: 60), [@project, issue]
%br
= paginate @issues, theme: "gitlab"
.span6
%table