blob: 735bfcfcf8c4374e34745ed439608d926f625c61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* blueimp Gallery Demo JS
* https://github.com/blueimp/Gallery
*
* Copyright 2013, Sebastian Tschan
* https://blueimp.net
*
* Licensed under the MIT license:
* https://opensource.org/licenses/MIT
*/
/* global blueimp, $ */
$(function () {
'use strict'
// Initialize the Gallery as video carousel:
// eslint-disable-next-line new-cap
blueimp.Gallery(document.getElementById('links').getElementsByTagName('a'), {
//container: '#__docusaurus div div #blueimp-gallery-carousel',
container: document.getElementById('blueimp-gallery-carousel'),
carousel: true
})
})
|