mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-17 04:43:18 +00:00
5aaf1e73fe
There's just no other adjective for this, it is _super_ nice. There may be refinements later as the designers get things together. Bug: 56499 Change-Id: I200684a19c190444587f520595186e9ae5afbea6
90 lines
2.4 KiB
Plaintext
90 lines
2.4 KiB
Plaintext
These are the available hook types. You can register functions to handle these
|
|
by calling lightboxHooks.register( 'typeOfHook', function () { ... } );
|
|
|
|
modifyInterface
|
|
Arguments: None
|
|
ThisArg: LightboxInterface
|
|
Called: From LightboxInterface constructor
|
|
|
|
modifyDefaultPreDiv
|
|
Arguments: None
|
|
ThisArg: LightboxInterface
|
|
Called: From LightboxInterface setupPreDiv method, if defaults are loaded
|
|
|
|
modifyDefaultPostDiv
|
|
Arguments: None
|
|
ThisArg: LightboxInterface
|
|
Called: From LightboxInterface setupPostDiv method, if defaults are loaded
|
|
|
|
addToPreDiv
|
|
Arguments:
|
|
* addToPre - Array - Add jQuery elements here to be added to the pre-image div
|
|
ThisArg: LightboxInterface
|
|
Called: From LightboxInterface constructor
|
|
|
|
addToPostDiv
|
|
Arguments:
|
|
* addToPost - Array - Add jQuery elements here to be added to the post-image div
|
|
ThisArg: LightboxInterface
|
|
Called: From LightboxInterface constructor
|
|
|
|
imageLoaded
|
|
Arguments: None
|
|
ThisArg: LightboxInterface
|
|
Called: From LightboxInterface-defined callback when image is done loading
|
|
|
|
modifyImageObject
|
|
Arguments: None
|
|
ThisArg: LightboxImage
|
|
Called: From LightboxImage constructor
|
|
|
|
modifyImageElement
|
|
Arguments: None
|
|
ThisArg: HTMLImageElement
|
|
Called: From LightboxImage getImageElement method
|
|
|
|
nextImage
|
|
Arguments: None
|
|
ThisArg: MultiLightbox
|
|
Called: From MultiLightbox next method
|
|
|
|
prevImage
|
|
Arguments: None
|
|
ThisArg: MultiLightbox
|
|
Called: From MultiLightbox prev method
|
|
|
|
noNextImage
|
|
Arguments: None
|
|
ThisArg: MultiLightbox
|
|
Called: From MultiLightbox next method when user tries to reach too-high index
|
|
|
|
noPrevImage
|
|
Arguments: None
|
|
ThisArg: MultiLightbox
|
|
Called: From MultiLightbox prev method when user tries to reach negative index
|
|
|
|
fullscreen
|
|
Arguments: None
|
|
ThisArg: LightboxInterface
|
|
Called: From LightboxInterface fullscreen method when user is going to fullscreen interface.
|
|
|
|
defullscreen
|
|
Arguments: None
|
|
ThisArg: LightboxInterface
|
|
Called: From LightboxInterface fullscreen method when user is leaving fullscreen interface.
|
|
|
|
clearInterface
|
|
Arguments: None
|
|
ThisArg: LightboxInterface
|
|
Called: From LightboxInterface empty method when the interface is being cleared.
|
|
|
|
imageResize
|
|
Arguments: None
|
|
ThisArg: LightboxInterface
|
|
Called: From LightboxInterface resize listener. Return false to override default behaviour.
|
|
|
|
closeInterface
|
|
Arguments: None
|
|
ThisArg: LightboxInterface
|
|
Called: From LightboxInterface unattach method when the interface is being unattached.
|