Skip to content
Snippets Groups Projects
Commit 69f7a1ef authored by Angie Byron's avatar Angie Byron
Browse files

Issue #2167611 by nod_: Back to site button broken.

parent c241c1ba
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -7,14 +7,15 @@
"use strict";
var pathInfo = drupalSettings.path;
var escapeAdminPath = sessionStorage.getItem('escapeAdminPath');
// Saves the last non-administrative page in the browser to be able to link back
// to it when browsing administrative pages. If there is a destination parameter
// there is not need to save the current path because the page is loaded within
// an existing "workflow".
if (!drupalSettings.currentPathIsAdmin && !/destination=/.test(window.location.search)) {
sessionStorage.setItem('escapeAdminPath', drupalSettings.currentPath);
if (!pathInfo.currentPathIsAdmin && !/destination=/.test(window.location.search)) {
sessionStorage.setItem('escapeAdminPath', pathInfo.currentPath);
}
/**
......@@ -27,7 +28,7 @@ Drupal.behaviors.escapeAdmin = {
attach: function () {
var $toolbarEscape = $('[data-toolbar-escape-admin]').once('escapeAdmin');
if ($toolbarEscape.length) {
if (drupalSettings.currentPathIsAdmin && escapeAdminPath) {
if (pathInfo.currentPathIsAdmin && escapeAdminPath) {
$toolbarEscape.attr('href', Drupal.url(escapeAdminPath));
$toolbarEscape.closest('.toolbar-tab').removeClass('hidden');
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment