diff options
author | Filipa Lacerda <filipa@gitlab.com> | 2016-11-24 11:28:48 +0000 |
---|---|---|
committer | Filipa Lacerda <filipa@gitlab.com> | 2016-11-30 17:06:46 +0000 |
commit | 640062abdbd1892dfcdd493bdab6d6c7d24fb3a6 (patch) | |
tree | 91ff87d5699ad7ad641f49e163bd3eb2c23bb3e5 /app/views | |
parent | 43e5009a301d474225bf39e0efc5766b4b6be0c1 (diff) | |
download | gitlab-ce-640062abdbd1892dfcdd493bdab6d6c7d24fb3a6.tar.gz |
Adds tests for tabs in the rspec for pipelines
Adds tests for the Linked Tabs class
Removes event listener
Adds builds
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/projects/pipelines/_with_tabs.html.haml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/projects/pipelines/_with_tabs.html.haml b/app/views/projects/pipelines/_with_tabs.html.haml index 49a26b3f374..4cc0e116122 100644 --- a/app/views/projects/pipelines/_with_tabs.html.haml +++ b/app/views/projects/pipelines/_with_tabs.html.haml @@ -1,12 +1,12 @@ .tabs-holder %ul.pipelines-tabs.nav-links.no-top.no-bottom %li - = link_to namespace_project_pipeline_path(@project.namespace, @project, @pipeline), data: { target: 'div#js-tab-pipeline', action: 'pipelines', toggle: 'tab' } do + = link_to namespace_project_pipeline_path(@project.namespace, @project, @pipeline), data: { target: 'div#js-tab-pipeline', action: 'pipelines', toggle: 'tab' }, class: 'pipeline-tab' do Pipeline %li - = link_to builds_namespace_project_pipeline_path(@project.namespace, @project, @pipeline), data: {target: 'div#js-tab-builds', action: 'builds', toggle: 'tab' } do + = link_to builds_namespace_project_pipeline_path(@project.namespace, @project, @pipeline), data: {target: 'div#js-tab-builds', action: 'builds', toggle: 'tab' }, class: 'builds-tab' do Builds - %span.badge= pipeline.statuses.count + %span.badge.js-builds-counter= pipeline.statuses.count |