administrator/index.php?option=com_search&view=searches
click on "Show Search Results"
Clicking the "Results" links shall opens in a new Tab, these links are Front-End view only.
The Front-End view is displayed in your administrator window.
You might be tempted to close the current tab and as such loosing your back-end.
Using the browser back button shall be avoided while doing stuff in the console.
Since 3.6.0
Adding target="_blank" at
https://github.com/joomla/joomla-cms/blob/31b7eb29d35c75902a79969982f155e313192248/administrator/components/com_search/views/searches/tmpl/default.php#L71
Feedback welcome before I can try a PR for that.
from accessibility perspective is not always bad to open in new window.
when you exchange app sessions you should, especcially if one is secure and the other not, IMHO, open in new tab/window.
Use of the target attribute provides an unambiguously machine-readable indication that a new window will open.
User agents can inform the user, and can also be configured not to open the new window.
For those not using assistive technology, the indication would also be available from the link text.Example:
<a href="help.html" target="_blank">Show Help (opens new window)</a>
https://www.w3.org/TR/2016/NOTE-WCAG20-TECHS-20160317/H83
Also
The objective of this technique is to limit the use of links or buttons that open new windows or tabs within Web content. In general, it is better not to open new windows and tabs since they can be disorienting for people, especially people who have difficulty perceiving visual content. However there are some situations where it is preferable from an accessibility perspective to open a new window or tab.
[...]
Example 2: Secure Web site
A page on a secure Web site includes a link to an external page that is outside of the secure session. The link opens in a new window or tab since opening the link in the same window will break or destroy the secure session.
Thank you both for sharing your views, I was suggesting "new Tab" to distinguish back/front-end similar than the "site preview" that is a front-end view only.
What about modal?
Extending the issue:
Another find: I tested with a Search Phrase that had 1 Hits. After any click on Results label Hits is increased by 1.
.
I would expect the hits to increase as clicking on the link is doing a new search
Category | ⇒ | Components UI/UX |
Labels |
Added:
?
|
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2016-10-29 20:33:31 |
Closed_By | ⇒ | brianteeman |
Closed as we have a PR for testing see #12626
From an a11y perspective it is bad to open a new window/tab. That removes
the ability for someone using assistive technology to use the back button
to return to where they are.
In addition while it is possible to force a link to open in a new
window/tab using the ctrl key it is not possible to force a link to open in
the same window/tab