1/**
2 * Swiper 3.4.2
3 * Most modern mobile touch slider and framework with hardware accelerated transitions
4 *
5 * http://www.idangero.us/swiper/
6 *
7 * Copyright 2017, Vladimir Kharlampidi
8 * The iDangero.us
9 * http://www.idangero.us/
10 *
11 * Licensed under MIT
12 *
13 * Released on: March 10, 2017
14 */
15(function () {
16 'use strict';
17 var $;
18
19 /*===========================
20 Swiper
21 ===========================*/
22 var Swiper = function (container, params) {
23 if (!(this instanceof Swiper)) return new Swiper(container, params);
24
25
26 var defaults = {
27 direction: 'horizontal',
28 touchEventsTarget: 'container',
29 initialSlide: 0,
30 speed: 300,
31 // autoplay
32 autoplay: false,
33 autoplayDisableOnInteraction: true,
34 autoplayStopOnLast: false,
35 // To support iOS's swipe-to-go-back gesture (when being used in-app, with UIWebView).
36 iOSEdgeSwipeDetection: false,
37 iOSEdgeSwipeThreshold: 20,
38 // Free mode
39 freeMode: false,
40 freeModeMomentum: true,
...
</html>