Commit db0d928973c8e1c547101ddf2b99243727e6708f
1 parent
7bded8f2
Exists in
master
and in
1 other branch
made images for fogbugz. made create issue and go to issue not appear in front o…
…f error time, description, etc text
Showing
4 changed files
with
9 additions
and
1 deletions
Show diff stats
app/views/errs/show.html.haml
... | ... | @@ -5,12 +5,12 @@ |
5 | 5 | = @app.name |
6 | 6 | %strong Where: |
7 | 7 | = @err.where |
8 | + %br | |
8 | 9 | %strong Environment: |
9 | 10 | = @err.environment |
10 | 11 | %strong Last Notice: |
11 | 12 | = last_notice_at(@err).to_s(:micro) |
12 | 13 | - content_for :action_bar do |
13 | - / some sort of mongoid association bug or something. have to actually search for the stupid app instead of using @err.app | |
14 | 14 | - if @err.app.issue_tracker |
15 | 15 | - if @err.issue_link.blank? |
16 | 16 | %span= link_to 'create issue', create_issue_app_err_path(@app, @err), :method => :post, :class => "#{@app.issue_tracker.issue_tracker_type}_create create-issue" | ... | ... |
4.78 KB
4.78 KB
public/stylesheets/application.css
... | ... | @@ -617,6 +617,10 @@ table.tally th.value { |
617 | 617 | background: transparent url(/images/pivotal_create.png) 6px 5px no-repeat; |
618 | 618 | } |
619 | 619 | |
620 | +#action-bar a.fogbugz_create { | |
621 | + background: transparent url(/images/fogbugz_create.png) 6px 5px no-repeat; | |
622 | +} | |
623 | + | |
620 | 624 | #action-bar a.lighthouseapp_goto { |
621 | 625 | background: transparent url(/images/lighthouseapp_goto.png) 6px 5px no-repeat; |
622 | 626 | } |
... | ... | @@ -629,6 +633,10 @@ table.tally th.value { |
629 | 633 | background: transparent url(/images/pivotal_goto.png) 6px 5px no-repeat; |
630 | 634 | } |
631 | 635 | |
636 | +#action-bar a.fogbugz_goto { | |
637 | + background: transparent url(/images/fogbugz_goto.png) 6px 5px no-repeat; | |
638 | +} | |
639 | + | |
632 | 640 | /* Notices Pagination */ |
633 | 641 | .notice-pagination { |
634 | 642 | float: left; | ... | ... |