mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00
[feat] image results: dismiss image viewer on back button press on mobile devices
This commit is contained in:
parent
41159fed32
commit
0b81faa003
1 changed files with 13 additions and 0 deletions
|
@ -52,6 +52,7 @@
|
|||
this.innerText = this.dataset.copiedText;
|
||||
});
|
||||
|
||||
const isMobile = screen.orientation.type.startsWith('portrait');
|
||||
searxng.selectImage = function (resultElement) {
|
||||
/* eslint no-unused-vars: 0 */
|
||||
if (resultElement) {
|
||||
|
@ -82,6 +83,11 @@
|
|||
}
|
||||
}
|
||||
d.getElementById('results').classList.add('image-detail-open');
|
||||
|
||||
// add a hash to the browser history so that pressing back doesn't return to the previous page
|
||||
// this allows us to dismiss the image details on pressing the back button on mobile devices
|
||||
if (isMobile) window.location.hash = 'image-viewer';
|
||||
|
||||
searxng.scrollPageToSelected();
|
||||
}
|
||||
|
||||
|
@ -102,6 +108,13 @@
|
|||
searxng.selectNext(false);
|
||||
});
|
||||
|
||||
// listen for the back button to be pressed and dismiss the image details when called
|
||||
if (isMobile) {
|
||||
window.addEventListener('hashchange', () => {
|
||||
if (!window.location.hash) searxng.closeDetail();
|
||||
})
|
||||
}
|
||||
|
||||
w.addEventListener('scroll', function () {
|
||||
var e = d.getElementById('backToTop'),
|
||||
scrollTop = document.documentElement.scrollTop || document.body.scrollTop,
|
||||
|
|
Loading…
Add table
Reference in a new issue