Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Bennett <lukeeeebennettplus@gmail.com>2016-10-14 20:13:03 +0300
committerLuke Bennett <lukeeeebennettplus@gmail.com>2016-10-17 19:59:32 +0300
commit9ff64b299bdcca767464f26e25c7e0017ec0fc38 (patch)
treefb71b398134a10c198d82850d704e3ad67331167
parentd4feb781387a843586d5a01740c43f50ce7ad084 (diff)
Swapped button text manipulation outcomes for the toggle query
-rw-r--r--app/assets/javascripts/pipelines.js.es62
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/pipelines.js.es6 b/app/assets/javascripts/pipelines.js.es6
index 6bf63ee6979..a7624de6089 100644
--- a/app/assets/javascripts/pipelines.js.es6
+++ b/app/assets/javascripts/pipelines.js.es6
@@ -15,7 +15,7 @@
$($pipelineBtn).add($pipelineGraph).toggleClass('graph-collapsed');
- graphCollapsed ? $btnText.text('Expand') : $btnText.text('Hide')
+ graphCollapsed ? $btnText.text('Hide') : $btnText.text('Expand')
}
addMarginToBuildColumns() {