mirror of
https://github.com/alangrainger/immich-public-proxy.git
synced 2025-01-01 13:41:58 +00:00
21 lines
653 B
JavaScript
21 lines
653 B
JavaScript
|
function initLightGallery () {
|
||
|
lightGallery(document.getElementById('lightgallery'), {
|
||
|
plugins: [lgZoom, lgThumbnail, lgVideo, lgFullscreen],
|
||
|
/*
|
||
|
This license key was graciously provided by LightGallery under their
|
||
|
GPLv3 open-source project license:
|
||
|
*/
|
||
|
licenseKey: '8FFA6495-676C4D30-8BFC54B6-4D0A6CEC',
|
||
|
/*
|
||
|
Please do not take it and use it for other projects, as it was provided
|
||
|
specifically for Immich Public Proxy.
|
||
|
|
||
|
For your own projects you can use the default license key of
|
||
|
0000-0000-000-0000 as per their docs:
|
||
|
|
||
|
https://www.lightgalleryjs.com/docs/settings/#licenseKey
|
||
|
*/
|
||
|
speed: 500
|
||
|
})
|
||
|
}
|