mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-24 22:25:27 +00:00
Hygiene: remove window.location use from overlays
Bug: T173539 Depends-On: I158dd7883be2846cf0d48bbd7e89fe2cd64a57d3 Change-Id: I87741667ca06cc701e5265aff13ba0492501de26
This commit is contained in:
parent
ce2b87e1c6
commit
41a43c5ce1
|
@ -112,15 +112,10 @@
|
|||
thumbnails: thumbs,
|
||||
title: decodeURIComponent( title )
|
||||
} );
|
||||
imageOverlay.on( ImageOverlay.EVENT_EXIT, function ( ev ) {
|
||||
// Prevent going back in browser's history.
|
||||
// See T94188 & T94363.
|
||||
ev.preventDefault();
|
||||
ev.stopPropagation();
|
||||
// Manually close the overlay (OverlayManager does not expose a method
|
||||
// to hide the active overlay).
|
||||
imageOverlay.hide();
|
||||
// Update the URL by clearing fragment.
|
||||
imageOverlay.on( ImageOverlay.EVENT_EXIT, function () {
|
||||
// Actually dismiss the overlay whenever the cross is closed.
|
||||
window.location.hash = '';
|
||||
// Clear the hash.
|
||||
router.navigate( '' );
|
||||
} );
|
||||
imageOverlay.on( ImageOverlay.EVENT_SLIDE, function ( nextThumbnail ) {
|
||||
|
|
Loading…
Reference in a new issue