summaryrefslogtreecommitdiff
path: root/app/views/projects/graphs
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-12-31 00:38:53 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-12-31 00:38:53 +0200
commit6cbadc953f172bf331c059b05c71ca85736d3030 (patch)
tree34bac8bc9b36625c5cad5c975739571ac7911d08 /app/views/projects/graphs
parent5c3e0f61d731c97d9c08eaaf8b5b57b66e26c4e5 (diff)
downloadgitlab-ce-6cbadc953f172bf331c059b05c71ca85736d3030.tar.gz
css class .hide has \!important so use gl-hide instead
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/views/projects/graphs')
-rw-r--r--app/views/projects/graphs/show.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/graphs/show.html.haml b/app/views/projects/graphs/show.html.haml
index a21cb9e7861..1d789f325ef 100644
--- a/app/views/projects/graphs/show.html.haml
+++ b/app/views/projects/graphs/show.html.haml
@@ -21,14 +21,14 @@
%ol.contributors-list.clearfix
:javascript
- $(".stat-graph").hide();
+ $(".stat-graph").gl-hide();
$.ajax({
type: "GET",
url: location.href,
complete: function() {
$(".stat-graph").fadeIn();
- $(".loading-graph").hide();
+ $(".loading-graph").gl-hide();
},
dataType: "script"
});