summaryrefslogtreecommitdiff
path: root/public/503.html
diff options
context:
space:
mode:
authorNur Rony <pro.nmrony@gmail.com>2017-04-07 14:24:04 +0000
committerJacob Schatz <jschatz@gitlab.com>2017-04-07 14:24:04 +0000
commit4d881ac6259fb7f57411f82294d71978417590d0 (patch)
tree437c333a2db757828e3b1fbc728dd3f79be3c372 /public/503.html
parent034c8885a0112809dfc1e671e729c7f5e65dd43a (diff)
downloadgitlab-ce-4d881ac6259fb7f57411f82294d71978417590d0.tar.gz
shows go back link only when history is available
Diffstat (limited to 'public/503.html')
-rw-r--r--public/503.html16
1 files changed, 15 insertions, 1 deletions
diff --git a/public/503.html b/public/503.html
index f946a087871..b09b0e2a67e 100644
--- a/public/503.html
+++ b/public/503.html
@@ -57,6 +57,11 @@
.container {
margin: auto 20px;
}
+
+ .go-back {
+ display: none;
+ }
+
</style>
</head>
@@ -71,7 +76,16 @@
<hr />
<p>Try refreshing the page, or going back and attempting the action again.</p>
<p>Please contact your GitLab administrator if this problem persists.</p>
- <a href="javascript:history.back()">Go back</a>
+ <a href="javascript:history.back()" class="js-go-back go-back">Go back</a>
</div>
+ <script>
+ (function () {
+ var goBack = document.querySelector('.js-go-back');
+
+ if (history.length > 1) {
+ goBack.style.display = 'inline';
+ }
+ })();
+ </script>
</body>
</html>