From 2a2240b2be38ee8f082113310f739ab806e3c549 Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Sat, 27 Jun 2026 15:44:00 -0500 Subject: [PATCH] fix: remove target=_blank from Help menu redirect Atum shows an external-link icon for _blank links, disrupting the sidebar flow. The help link now opens in the same window. Claude-Session: https://claude.ai/code/session_01Jo2JpjCwfHAh2HHRSjczKq --- .../plg_system_mokosuiteclient/Extension/MokoSuiteClient.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/source/packages/plg_system_mokosuiteclient/Extension/MokoSuiteClient.php b/source/packages/plg_system_mokosuiteclient/Extension/MokoSuiteClient.php index b1964b16..fc7f24ec 100644 --- a/source/packages/plg_system_mokosuiteclient/Extension/MokoSuiteClient.php +++ b/source/packages/plg_system_mokosuiteclient/Extension/MokoSuiteClient.php @@ -383,12 +383,9 @@ class MokoSuiteClient extends CMSPlugin implements BootableExtensionInterface var url = " . json_encode($supportUrl) . "; document.querySelectorAll('a[href*=\"help.joomla.org\"], a[href*=\"docs.joomla.org\"]').forEach(function(link) { link.href = url; - link.target = '_blank'; }); document.querySelectorAll('a[href*=\"dashboard=help\"]').forEach(function(link) { link.href = url; - link.target = '_blank'; - link.rel = 'noopener noreferrer'; }); }); ");