1// ==================================================
2// fancyBox v3.2.10
3//
4// Licensed GPLv3 for open source use
5// or fancyBox Commercial License for commercial use
6//
7// http://fancyapps.com/fancybox/
8// Copyright 2017 fancyApps
9//
10// ==================================================
11;(function (window, document, $, undefined) {
12 'use strict';
13
14 // If there's no jQuery, fancyBox can't work
15 // =========================================
16
17 if ( !$ ) {
18 return;
19 }
20
21 // Check if fancyBox is already initialized
22 // ========================================
23
24 if ( $.fn.fancybox ) {
25
26 if ( 'console' in window ) {
27 console.log( 'fancyBox already initialized' );
28 }
29
30 return;
31 }
32
33 // Private default settings
34 // ========================
35
36 var defaults = {
37
38 // Enable infinite gallery navigation
39 loop : false,
40
...
</html>