jenkins-bot has submitted this change and it was merged. Change subject: Clear the cursor hiding class when attaching the lightbox ......................................................................
Clear the cursor hiding class when attaching the lightbox This ensures that if fullscreen was exited with the cursor hidden reopening the lightbox should happen with a visible cursor Change-Id: I33846234fd4c314ff9ff924e9f42d4e8c5c5bd8d Mingle: https://wikimedia.mingle.thoughtworks.com/projects/multimedia/cards/288 --- M resources/mmv/mmv.lightboxinterface.js 1 file changed, 3 insertions(+), 0 deletions(-) Approvals: Gergő Tisza: Looks good to me, approved jenkins-bot: Verified diff --git a/resources/mmv/mmv.lightboxinterface.js b/resources/mmv/mmv.lightboxinterface.js index 3b1357b..d330589 100644 --- a/resources/mmv/mmv.lightboxinterface.js +++ b/resources/mmv/mmv.lightboxinterface.js @@ -189,6 +189,9 @@ // This needs to happen after the parent attach() because the buttons need to be attached // to the DOM for $.fn.stop() to work this.buttons.stopFade(); + + // Reset the cursor fading + this.fadeStopped(); }; /** -- To view, visit https://gerrit.wikimedia.org/r/119485 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I33846234fd4c314ff9ff924e9f42d4e8c5c5bd8d Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/MultimediaViewer Gerrit-Branch: master Gerrit-Owner: Gilles <[email protected]> Gerrit-Reviewer: Gergő Tisza <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
