Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
2cd40167
Commit
2cd40167
authored
Mar 10, 2016
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moves build status tooltip on issues
parent
491ac7ce
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
app/helpers/ci_status_helper.rb
app/helpers/ci_status_helper.rb
+2
-2
app/views/projects/issues/_merge_requests.html.haml
app/views/projects/issues/_merge_requests.html.haml
+2
-2
No files found.
app/helpers/ci_status_helper.rb
View file @
2cd40167
...
...
@@ -42,12 +42,12 @@ module CiStatusHelper
icon
(
icon_name
+
' fw'
)
end
def
render_ci_status
(
ci_commit
)
def
render_ci_status
(
ci_commit
,
placement:
'left'
)
link_to
ci_status_icon
(
ci_commit
),
ci_status_path
(
ci_commit
),
class:
"ci-status-link ci-status-icon-
#{
ci_commit
.
status
.
dasherize
}
"
,
title:
"Build
#{
ci_status_label
(
ci_commit
)
}
"
,
data:
{
toggle:
'tooltip'
,
placement:
'left'
}
data:
{
toggle:
'tooltip'
,
placement:
placement
}
end
def
no_runners_for_project?
(
project
)
...
...
app/views/projects/issues/_merge_requests.html.haml
View file @
2cd40167
...
...
@@ -7,11 +7,11 @@
%li
%span
.merge-request-ci-status
-
if
merge_request
.
ci_commit
=
render_ci_status
(
merge_request
.
ci_commit
)
=
render_ci_status
(
merge_request
.
ci_commit
,
placement:
'bottom'
)
-
elsif
has_any_ci
=
icon
(
'blank fw'
)
%span
.merge-request-id
\!
#{
merge_request
.
iid
}
#{
merge_request
.
to_reference
}
%span
.merge-request-info
%strong
=
link_to_gfm
merge_request
.
title
,
merge_request_path
(
merge_request
),
class:
"row_title"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment