Merge branch '27580-fix-show-go-back' into 'master'
shows go back link only when history is available Closes #27580 See merge request !9017
This commit is contained in:
commit
052d200cd0
6 changed files with 80 additions and 5 deletions
4
changelogs/unreleased/27580-fix-show-go-back.yml
Normal file
4
changelogs/unreleased/27580-fix-show-go-back.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
title: Shows 'Go Back' link only when browser history is available
|
||||
merge_request: 9017
|
||||
author:
|
|
@ -57,6 +57,11 @@
|
|||
.container {
|
||||
margin: auto 20px;
|
||||
}
|
||||
|
||||
.go-back {
|
||||
display: none;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
|
@ -71,7 +76,16 @@
|
|||
<hr />
|
||||
<p>Make sure the address is correct and that the page hasn't moved.</p>
|
||||
<p>Please contact your GitLab administrator if you think this is a mistake.</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>
|
||||
|
|
|
@ -57,6 +57,11 @@
|
|||
.container {
|
||||
margin: auto 20px;
|
||||
}
|
||||
|
||||
.go-back {
|
||||
display: none;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
|
@ -71,7 +76,17 @@
|
|||
<hr />
|
||||
<p>Make sure you have access to the thing you tried to change.</p>
|
||||
<p>Please contact your GitLab administrator if you think this is a mistake.</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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue