Version Description
- Minor bug fixes
Download this release
Release Info
| Developer | titodevera |
| Plugin | |
| Version | 1.1 |
| Comparing to | |
| See all releases | |
Version 1.1
- assets/css/styles-admin.css +8 -0
- assets/css/styles-frontend.css +118 -0
- assets/img/icon_pwb.jpg +0 -0
- assets/js/pwb_admin_functions.js +28 -0
- assets/js/pwb_frontend_functions.js +42 -0
- assets/js/slick/ajax-loader.gif +0 -0
- assets/js/slick/config.rb +10 -0
- assets/js/slick/fonts/slick.eot +0 -0
- assets/js/slick/fonts/slick.svg +14 -0
- assets/js/slick/fonts/slick.ttf +0 -0
- assets/js/slick/fonts/slick.woff +0 -0
- assets/js/slick/slick-theme.css +204 -0
- assets/js/slick/slick-theme.less +168 -0
- assets/js/slick/slick-theme.scss +190 -0
- assets/js/slick/slick.css +119 -0
- assets/js/slick/slick.js +2670 -0
- assets/js/slick/slick.less +99 -0
- assets/js/slick/slick.min.js +18 -0
- assets/js/slick/slick.scss +99 -0
- classes/class-perfect-woocommerce-brands.php +381 -0
- classes/class-pwb-admin-tab.php +102 -0
- classes/shortcodes/class-pwb-all-brands-shortcode.php +98 -0
- classes/shortcodes/class-pwb-brand-shortcode.php +29 -0
- classes/shortcodes/class-pwb-carousel-shortcode.php +52 -0
- classes/widgets/class-pwb-dropdown-widget.php +69 -0
- classes/widgets/class-pwb-list-widget.php +70 -0
- lang/perfect-woocommerce-brands-es_ES.mo +0 -0
- lang/perfect-woocommerce-brands-es_ES.po +299 -0
- main.php +61 -0
- readme.txt +69 -0
assets/css/styles-admin.css
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* ----------------------- Taxonomy pwb-brand ----------------------- */
|
| 2 |
+
.taxonomy-pwb-brand .pwb_brand_cont #pwb_brand_image{
|
| 3 |
+
display: none;
|
| 4 |
+
}
|
| 5 |
+
.taxonomy-pwb-brand .pwb_brand_cont div{
|
| 6 |
+
margin-top: 10px;
|
| 7 |
+
}
|
| 8 |
+
/* ----------------------- /Taxonomy pwb-brand ----------------------- */
|
assets/css/styles-frontend.css
ADDED
|
@@ -0,0 +1,118 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* ----------------------- PWB Carousel ----------------------- */
|
| 2 |
+
.pwb-carousel .slick-loading .slick-list{
|
| 3 |
+
background: #fff url('./ajax-loader.gif') center center no-repeat;
|
| 4 |
+
}
|
| 5 |
+
.pwb-carousel .slick-slide{
|
| 6 |
+
margin: 0 10px;
|
| 7 |
+
}
|
| 8 |
+
.pwb-carousel .slick-prev,
|
| 9 |
+
.pwb-carousel .slick-next{
|
| 10 |
+
font-size: 0;
|
| 11 |
+
|
| 12 |
+
position: absolute;
|
| 13 |
+
top: 0;
|
| 14 |
+
bottom: 0;
|
| 15 |
+
|
| 16 |
+
display: block;
|
| 17 |
+
|
| 18 |
+
cursor: pointer;
|
| 19 |
+
|
| 20 |
+
font-size: 22px;
|
| 21 |
+
width: 30px;
|
| 22 |
+
overflow: hidden;
|
| 23 |
+
text-align: center;
|
| 24 |
+
|
| 25 |
+
color: #aeaeae;
|
| 26 |
+
border: none;
|
| 27 |
+
outline: none;
|
| 28 |
+
|
| 29 |
+
z-index: 999;
|
| 30 |
+
background: #eee;
|
| 31 |
+
opacity: 0;
|
| 32 |
+
transition: opacity 0.3s ease-in-out;
|
| 33 |
+
-webkit-transition: opacity 0.3s ease-in-out;
|
| 34 |
+
-moz-transition: opacity 0.3s ease-in-out;
|
| 35 |
+
-o-transition: opacity 0.3s ease-in-out;
|
| 36 |
+
|
| 37 |
+
}
|
| 38 |
+
.pwb-carousel .slick-prev > span,
|
| 39 |
+
.pwb-carousel .slick-next > span{
|
| 40 |
+
display: inline-block;
|
| 41 |
+
height: 20px;
|
| 42 |
+
width: 20px;
|
| 43 |
+
padding: 10px;
|
| 44 |
+
position: absolute;
|
| 45 |
+
top: 50%;
|
| 46 |
+
margin-top: -20px;
|
| 47 |
+
left: 0;
|
| 48 |
+
right: 0;
|
| 49 |
+
}
|
| 50 |
+
.pwb-carousel .slick-prev:hover,
|
| 51 |
+
.pwb-carousel .slick-prev:focus,
|
| 52 |
+
.pwb-carousel .slick-next:hover,
|
| 53 |
+
.pwb-carousel .slick-next:focus{
|
| 54 |
+
outline: none;
|
| 55 |
+
}
|
| 56 |
+
.pwb-carousel .slick-prev{
|
| 57 |
+
left: 0;
|
| 58 |
+
}
|
| 59 |
+
.pwb-carousel .slick-next{
|
| 60 |
+
right: 0;
|
| 61 |
+
}
|
| 62 |
+
.pwb-carousel:hover .slick-next,.pwb-carousel:hover .slick-prev{
|
| 63 |
+
opacity: 0.8;
|
| 64 |
+
}
|
| 65 |
+
/* ----------------------- /PWB Carousel ----------------------- */
|
| 66 |
+
|
| 67 |
+
/* ----------------------- PWB All Brands ----------------------- */
|
| 68 |
+
.pwb-all-brands .pwb-pagination-wrapper{
|
| 69 |
+
margin-top: 20px;
|
| 70 |
+
padding-top: 10px;
|
| 71 |
+
border-top: 1px solid #ededed;
|
| 72 |
+
text-align: right;
|
| 73 |
+
}
|
| 74 |
+
.pwb-all-brands .pwb-pagination{
|
| 75 |
+
display: inline-block;
|
| 76 |
+
margin-right: 10px;
|
| 77 |
+
background-color: #ededed;
|
| 78 |
+
color: #333;
|
| 79 |
+
text-align: center;
|
| 80 |
+
padding: 10px;
|
| 81 |
+
}
|
| 82 |
+
.pwb-all-brands .pwb-brands-cols-outer:after{
|
| 83 |
+
content: "";
|
| 84 |
+
display: table;
|
| 85 |
+
clear: both;
|
| 86 |
+
}
|
| 87 |
+
.pwb-all-brands .pwb-brands-cols-outer .pwb-brands-col3{
|
| 88 |
+
padding: 0 15px;
|
| 89 |
+
width: 20%;
|
| 90 |
+
float: left;
|
| 91 |
+
}
|
| 92 |
+
.pwb-all-brands .pwb-brands-cols-outer .pwb-brands-col3 > div:first-child{
|
| 93 |
+
height: 25px;
|
| 94 |
+
overflow: hidden;
|
| 95 |
+
}
|
| 96 |
+
/* ----------------------- /PWB All Brands ----------------------- */
|
| 97 |
+
|
| 98 |
+
/* ----------------------- Responsive ----------------------- */
|
| 99 |
+
@media screen and (max-width: 1000px) {
|
| 100 |
+
.pwb-all-brands .pwb-brands-cols-outer .pwb-brands-col3{
|
| 101 |
+
width: 25%;
|
| 102 |
+
}
|
| 103 |
+
}
|
| 104 |
+
@media screen and (max-width: 700px) {
|
| 105 |
+
.pwb-all-brands .pwb-brands-cols-outer .pwb-brands-col3{
|
| 106 |
+
width: 50%;
|
| 107 |
+
}
|
| 108 |
+
}
|
| 109 |
+
@media screen and (max-width: 480px) {
|
| 110 |
+
.pwb-all-brands .pwb-brands-cols-outer .pwb-brands-col3{
|
| 111 |
+
width: 100%;
|
| 112 |
+
float: none;
|
| 113 |
+
}
|
| 114 |
+
.pwb-all-brands .pwb-brands-cols-outer .pwb-brands-col3 > div:first-child{
|
| 115 |
+
height: auto;
|
| 116 |
+
}
|
| 117 |
+
}
|
| 118 |
+
/* ----------------------- /Responsive ----------------------- */
|
assets/img/icon_pwb.jpg
ADDED
|
Binary file
|
assets/js/pwb_admin_functions.js
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
jQuery.noConflict();
|
| 2 |
+
|
| 3 |
+
var media_uploader = null;
|
| 4 |
+
|
| 5 |
+
function open_media_uploader_image(){
|
| 6 |
+
media_uploader = wp.media({
|
| 7 |
+
frame: "post",
|
| 8 |
+
state: "insert",
|
| 9 |
+
multiple: false
|
| 10 |
+
});
|
| 11 |
+
|
| 12 |
+
media_uploader.on("insert", function(){
|
| 13 |
+
var json = media_uploader.state().get("selection").first().toJSON();
|
| 14 |
+
var image_id = json.id;
|
| 15 |
+
var image_url = json.url;
|
| 16 |
+
jQuery('.taxonomy-pwb-brand #pwb_brand_image').val(image_id);
|
| 17 |
+
jQuery('.taxonomy-pwb-brand #pwb_brand_image_result').remove();
|
| 18 |
+
jQuery('.taxonomy-pwb-brand #pwb_brand_image_select').after('<div>'+image_url+'</div>');
|
| 19 |
+
});
|
| 20 |
+
|
| 21 |
+
media_uploader.open();
|
| 22 |
+
}
|
| 23 |
+
|
| 24 |
+
jQuery(document).ready(function( $ ) {
|
| 25 |
+
$('.taxonomy-pwb-brand #pwb_brand_image_select').on('click',function(){
|
| 26 |
+
open_media_uploader_image();
|
| 27 |
+
});
|
| 28 |
+
});
|
assets/js/pwb_frontend_functions.js
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
jQuery.noConflict();
|
| 2 |
+
|
| 3 |
+
jQuery(document).ready(function( $ ) {
|
| 4 |
+
$('.pwb-dropdown-widget').on('change',function(){
|
| 5 |
+
var href = $(this).find(":selected").val();
|
| 6 |
+
location.href = href;
|
| 7 |
+
});
|
| 8 |
+
|
| 9 |
+
$('.pwb-carousel').slick({
|
| 10 |
+
infinite: true,
|
| 11 |
+
draggable: false,
|
| 12 |
+
prevArrow: '<div class="slick-prev"><span title="Prev"><</span></div>',
|
| 13 |
+
nextArrow: '<div class="slick-next"><span title="Next">></span></div>',
|
| 14 |
+
speed: 300,
|
| 15 |
+
responsive: [
|
| 16 |
+
{
|
| 17 |
+
breakpoint: 1024,
|
| 18 |
+
settings: {
|
| 19 |
+
slidesToShow: 4,
|
| 20 |
+
draggable: true,
|
| 21 |
+
arrows: false
|
| 22 |
+
}
|
| 23 |
+
},
|
| 24 |
+
{
|
| 25 |
+
breakpoint: 600,
|
| 26 |
+
settings: {
|
| 27 |
+
slidesToShow: 3,
|
| 28 |
+
draggable: true,
|
| 29 |
+
arrows: false
|
| 30 |
+
}
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
breakpoint: 480,
|
| 34 |
+
settings: {
|
| 35 |
+
slidesToShow: 2,
|
| 36 |
+
draggable: true,
|
| 37 |
+
arrows: false
|
| 38 |
+
}
|
| 39 |
+
}
|
| 40 |
+
]
|
| 41 |
+
});
|
| 42 |
+
});
|
assets/js/slick/ajax-loader.gif
ADDED
|
Binary file
|
assets/js/slick/config.rb
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
css_dir = "."
|
| 2 |
+
sass_dir = "."
|
| 3 |
+
images_dir = "."
|
| 4 |
+
fonts_dir = "fonts"
|
| 5 |
+
relative_assets = true
|
| 6 |
+
|
| 7 |
+
output_style = :compact
|
| 8 |
+
line_comments = false
|
| 9 |
+
|
| 10 |
+
preferred_syntax = :scss
|
assets/js/slick/fonts/slick.eot
ADDED
|
Binary file
|
assets/js/slick/fonts/slick.svg
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" standalone="no"?>
|
| 2 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
| 3 |
+
<svg xmlns="http://www.w3.org/2000/svg">
|
| 4 |
+
<metadata>Generated by Fontastic.me</metadata>
|
| 5 |
+
<defs>
|
| 6 |
+
<font id="slick" horiz-adv-x="512">
|
| 7 |
+
<font-face font-family="slick" units-per-em="512" ascent="480" descent="-32"/>
|
| 8 |
+
<missing-glyph horiz-adv-x="512" />
|
| 9 |
+
|
| 10 |
+
<glyph unicode="→" d="M241 113l130 130c4 4 6 8 6 13 0 5-2 9-6 13l-130 130c-3 3-7 5-12 5-5 0-10-2-13-5l-29-30c-4-3-6-7-6-12 0-5 2-10 6-13l87-88-87-88c-4-3-6-8-6-13 0-5 2-9 6-12l29-30c3-3 8-5 13-5 5 0 9 2 12 5z m234 143c0-40-9-77-29-110-20-34-46-60-80-80-33-20-70-29-110-29-40 0-77 9-110 29-34 20-60 46-80 80-20 33-29 70-29 110 0 40 9 77 29 110 20 34 46 60 80 80 33 20 70 29 110 29 40 0 77-9 110-29 34-20 60-46 80-80 20-33 29-70 29-110z"/>
|
| 11 |
+
<glyph unicode="←" d="M296 113l29 30c4 3 6 7 6 12 0 5-2 10-6 13l-87 88 87 88c4 3 6 8 6 13 0 5-2 9-6 12l-29 30c-3 3-8 5-13 5-5 0-9-2-12-5l-130-130c-4-4-6-8-6-13 0-5 2-9 6-13l130-130c3-3 7-5 12-5 5 0 10 2 13 5z m179 143c0-40-9-77-29-110-20-34-46-60-80-80-33-20-70-29-110-29-40 0-77 9-110 29-34 20-60 46-80 80-20 33-29 70-29 110 0 40 9 77 29 110 20 34 46 60 80 80 33 20 70 29 110 29 40 0 77-9 110-29 34-20 60-46 80-80 20-33 29-70 29-110z"/>
|
| 12 |
+
<glyph unicode="•" d="M475 256c0-40-9-77-29-110-20-34-46-60-80-80-33-20-70-29-110-29-40 0-77 9-110 29-34 20-60 46-80 80-20 33-29 70-29 110 0 40 9 77 29 110 20 34 46 60 80 80 33 20 70 29 110 29 40 0 77-9 110-29 34-20 60-46 80-80 20-33 29-70 29-110z"/>
|
| 13 |
+
<glyph unicode="a" d="M475 439l0-128c0-5-1-9-5-13-4-4-8-5-13-5l-128 0c-8 0-13 3-17 11-3 7-2 14 4 20l40 39c-28 26-62 39-100 39-20 0-39-4-57-11-18-8-33-18-46-32-14-13-24-28-32-46-7-18-11-37-11-57 0-20 4-39 11-57 8-18 18-33 32-46 13-14 28-24 46-32 18-7 37-11 57-11 23 0 44 5 64 15 20 9 38 23 51 42 2 1 4 3 7 3 3 0 5-1 7-3l39-39c2-2 3-3 3-6 0-2-1-4-2-6-21-25-46-45-76-59-29-14-60-20-93-20-30 0-58 5-85 17-27 12-51 27-70 47-20 19-35 43-47 70-12 27-17 55-17 85 0 30 5 58 17 85 12 27 27 51 47 70 19 20 43 35 70 47 27 12 55 17 85 17 28 0 55-5 81-15 26-11 50-26 70-45l37 37c6 6 12 7 20 4 8-4 11-9 11-17z"/>
|
| 14 |
+
</font></defs></svg>
|
assets/js/slick/fonts/slick.ttf
ADDED
|
Binary file
|
assets/js/slick/fonts/slick.woff
ADDED
|
Binary file
|
assets/js/slick/slick-theme.css
ADDED
|
@@ -0,0 +1,204 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@charset 'UTF-8';
|
| 2 |
+
/* Slider */
|
| 3 |
+
.slick-loading .slick-list
|
| 4 |
+
{
|
| 5 |
+
background: #fff url('./ajax-loader.gif') center center no-repeat;
|
| 6 |
+
}
|
| 7 |
+
|
| 8 |
+
/* Icons */
|
| 9 |
+
@font-face
|
| 10 |
+
{
|
| 11 |
+
font-family: 'slick';
|
| 12 |
+
font-weight: normal;
|
| 13 |
+
font-style: normal;
|
| 14 |
+
|
| 15 |
+
src: url('./fonts/slick.eot');
|
| 16 |
+
src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
|
| 17 |
+
}
|
| 18 |
+
/* Arrows */
|
| 19 |
+
.slick-prev,
|
| 20 |
+
.slick-next
|
| 21 |
+
{
|
| 22 |
+
font-size: 0;
|
| 23 |
+
line-height: 0;
|
| 24 |
+
|
| 25 |
+
position: absolute;
|
| 26 |
+
top: 50%;
|
| 27 |
+
|
| 28 |
+
display: block;
|
| 29 |
+
|
| 30 |
+
width: 20px;
|
| 31 |
+
height: 20px;
|
| 32 |
+
padding: 0;
|
| 33 |
+
margin-top: -10px\9; /*lte IE 8*/
|
| 34 |
+
-webkit-transform: translate(0, -50%);
|
| 35 |
+
-ms-transform: translate(0, -50%);
|
| 36 |
+
transform: translate(0, -50%);
|
| 37 |
+
|
| 38 |
+
cursor: pointer;
|
| 39 |
+
|
| 40 |
+
color: transparent;
|
| 41 |
+
border: none;
|
| 42 |
+
outline: none;
|
| 43 |
+
background: transparent;
|
| 44 |
+
}
|
| 45 |
+
.slick-prev:hover,
|
| 46 |
+
.slick-prev:focus,
|
| 47 |
+
.slick-next:hover,
|
| 48 |
+
.slick-next:focus
|
| 49 |
+
{
|
| 50 |
+
color: transparent;
|
| 51 |
+
outline: none;
|
| 52 |
+
background: transparent;
|
| 53 |
+
}
|
| 54 |
+
.slick-prev:hover:before,
|
| 55 |
+
.slick-prev:focus:before,
|
| 56 |
+
.slick-next:hover:before,
|
| 57 |
+
.slick-next:focus:before
|
| 58 |
+
{
|
| 59 |
+
opacity: 1;
|
| 60 |
+
}
|
| 61 |
+
.slick-prev.slick-disabled:before,
|
| 62 |
+
.slick-next.slick-disabled:before
|
| 63 |
+
{
|
| 64 |
+
opacity: .25;
|
| 65 |
+
}
|
| 66 |
+
|
| 67 |
+
.slick-prev:before,
|
| 68 |
+
.slick-next:before
|
| 69 |
+
{
|
| 70 |
+
font-family: 'slick';
|
| 71 |
+
font-size: 20px;
|
| 72 |
+
line-height: 1;
|
| 73 |
+
|
| 74 |
+
opacity: .75;
|
| 75 |
+
color: white;
|
| 76 |
+
|
| 77 |
+
-webkit-font-smoothing: antialiased;
|
| 78 |
+
-moz-osx-font-smoothing: grayscale;
|
| 79 |
+
}
|
| 80 |
+
|
| 81 |
+
.slick-prev
|
| 82 |
+
{
|
| 83 |
+
left: -25px;
|
| 84 |
+
}
|
| 85 |
+
[dir='rtl'] .slick-prev
|
| 86 |
+
{
|
| 87 |
+
right: -25px;
|
| 88 |
+
left: auto;
|
| 89 |
+
}
|
| 90 |
+
.slick-prev:before
|
| 91 |
+
{
|
| 92 |
+
content: '←';
|
| 93 |
+
}
|
| 94 |
+
[dir='rtl'] .slick-prev:before
|
| 95 |
+
{
|
| 96 |
+
content: '→';
|
| 97 |
+
}
|
| 98 |
+
|
| 99 |
+
.slick-next
|
| 100 |
+
{
|
| 101 |
+
right: -25px;
|
| 102 |
+
}
|
| 103 |
+
[dir='rtl'] .slick-next
|
| 104 |
+
{
|
| 105 |
+
right: auto;
|
| 106 |
+
left: -25px;
|
| 107 |
+
}
|
| 108 |
+
.slick-next:before
|
| 109 |
+
{
|
| 110 |
+
content: '→';
|
| 111 |
+
}
|
| 112 |
+
[dir='rtl'] .slick-next:before
|
| 113 |
+
{
|
| 114 |
+
content: '←';
|
| 115 |
+
}
|
| 116 |
+
|
| 117 |
+
/* Dots */
|
| 118 |
+
.slick-slider
|
| 119 |
+
{
|
| 120 |
+
margin-bottom: 30px;
|
| 121 |
+
}
|
| 122 |
+
|
| 123 |
+
.slick-dots
|
| 124 |
+
{
|
| 125 |
+
position: absolute;
|
| 126 |
+
bottom: -45px;
|
| 127 |
+
|
| 128 |
+
display: block;
|
| 129 |
+
|
| 130 |
+
width: 100%;
|
| 131 |
+
padding: 0;
|
| 132 |
+
|
| 133 |
+
list-style: none;
|
| 134 |
+
|
| 135 |
+
text-align: center;
|
| 136 |
+
}
|
| 137 |
+
.slick-dots li
|
| 138 |
+
{
|
| 139 |
+
position: relative;
|
| 140 |
+
|
| 141 |
+
display: inline-block;
|
| 142 |
+
|
| 143 |
+
width: 20px;
|
| 144 |
+
height: 20px;
|
| 145 |
+
margin: 0 5px;
|
| 146 |
+
padding: 0;
|
| 147 |
+
|
| 148 |
+
cursor: pointer;
|
| 149 |
+
}
|
| 150 |
+
.slick-dots li button
|
| 151 |
+
{
|
| 152 |
+
font-size: 0;
|
| 153 |
+
line-height: 0;
|
| 154 |
+
|
| 155 |
+
display: block;
|
| 156 |
+
|
| 157 |
+
width: 20px;
|
| 158 |
+
height: 20px;
|
| 159 |
+
padding: 5px;
|
| 160 |
+
|
| 161 |
+
cursor: pointer;
|
| 162 |
+
|
| 163 |
+
color: transparent;
|
| 164 |
+
border: 0;
|
| 165 |
+
outline: none;
|
| 166 |
+
background: transparent;
|
| 167 |
+
}
|
| 168 |
+
.slick-dots li button:hover,
|
| 169 |
+
.slick-dots li button:focus
|
| 170 |
+
{
|
| 171 |
+
outline: none;
|
| 172 |
+
}
|
| 173 |
+
.slick-dots li button:hover:before,
|
| 174 |
+
.slick-dots li button:focus:before
|
| 175 |
+
{
|
| 176 |
+
opacity: 1;
|
| 177 |
+
}
|
| 178 |
+
.slick-dots li button:before
|
| 179 |
+
{
|
| 180 |
+
font-family: 'slick';
|
| 181 |
+
font-size: 6px;
|
| 182 |
+
line-height: 20px;
|
| 183 |
+
|
| 184 |
+
position: absolute;
|
| 185 |
+
top: 0;
|
| 186 |
+
left: 0;
|
| 187 |
+
|
| 188 |
+
width: 20px;
|
| 189 |
+
height: 20px;
|
| 190 |
+
|
| 191 |
+
content: '•';
|
| 192 |
+
text-align: center;
|
| 193 |
+
|
| 194 |
+
opacity: .25;
|
| 195 |
+
color: black;
|
| 196 |
+
|
| 197 |
+
-webkit-font-smoothing: antialiased;
|
| 198 |
+
-moz-osx-font-smoothing: grayscale;
|
| 199 |
+
}
|
| 200 |
+
.slick-dots li.slick-active button:before
|
| 201 |
+
{
|
| 202 |
+
opacity: .75;
|
| 203 |
+
color: black;
|
| 204 |
+
}
|
assets/js/slick/slick-theme.less
ADDED
|
@@ -0,0 +1,168 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@charset "UTF-8";
|
| 2 |
+
|
| 3 |
+
// Default Variables
|
| 4 |
+
|
| 5 |
+
@slick-font-path: "./fonts/";
|
| 6 |
+
@slick-font-family: "slick";
|
| 7 |
+
@slick-loader-path: "./";
|
| 8 |
+
@slick-arrow-color: white;
|
| 9 |
+
@slick-dot-color: black;
|
| 10 |
+
@slick-dot-color-active: @slick-dot-color;
|
| 11 |
+
@slick-prev-character: "←";
|
| 12 |
+
@slick-next-character: "→";
|
| 13 |
+
@slick-dot-character: "•";
|
| 14 |
+
@slick-dot-size: 6px;
|
| 15 |
+
@slick-opacity-default: 0.75;
|
| 16 |
+
@slick-opacity-on-hover: 1;
|
| 17 |
+
@slick-opacity-not-active: 0.25;
|
| 18 |
+
|
| 19 |
+
/* Slider */
|
| 20 |
+
.slick-loading .slick-list{
|
| 21 |
+
background: #fff url('./ajax-loader.gif') center center no-repeat;
|
| 22 |
+
}
|
| 23 |
+
|
| 24 |
+
/* Icons */
|
| 25 |
+
@font-face{
|
| 26 |
+
font-family: 'slick';
|
| 27 |
+
font-weight: normal;
|
| 28 |
+
font-style: normal;
|
| 29 |
+
|
| 30 |
+
src: url('./fonts/slick.eot');
|
| 31 |
+
src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
+
/* Arrows */
|
| 35 |
+
|
| 36 |
+
.slick-prev,
|
| 37 |
+
.slick-next {
|
| 38 |
+
position: absolute;
|
| 39 |
+
display: block;
|
| 40 |
+
height: 20px;
|
| 41 |
+
width: 20px;
|
| 42 |
+
line-height: 0px;
|
| 43 |
+
font-size: 0px;
|
| 44 |
+
cursor: pointer;
|
| 45 |
+
background: transparent;
|
| 46 |
+
color: transparent;
|
| 47 |
+
top: 50%;
|
| 48 |
+
margin-top: -10px~'\9'; /*lte IE 8*/
|
| 49 |
+
-webkit-transform: translate(0, -50%);
|
| 50 |
+
-ms-transform: translate(0, -50%);
|
| 51 |
+
transform: translate(0, -50%);
|
| 52 |
+
padding: 0;
|
| 53 |
+
border: none;
|
| 54 |
+
outline: none;
|
| 55 |
+
&:hover, &:focus {
|
| 56 |
+
outline: none;
|
| 57 |
+
background: transparent;
|
| 58 |
+
color: transparent;
|
| 59 |
+
&:before {
|
| 60 |
+
opacity: @slick-opacity-on-hover;
|
| 61 |
+
}
|
| 62 |
+
}
|
| 63 |
+
&.slick-disabled:before {
|
| 64 |
+
opacity: @slick-opacity-not-active;
|
| 65 |
+
}
|
| 66 |
+
}
|
| 67 |
+
|
| 68 |
+
.slick-prev:before, .slick-next:before {
|
| 69 |
+
font-family: @slick-font-family;
|
| 70 |
+
font-size: 20px;
|
| 71 |
+
line-height: 1;
|
| 72 |
+
color: @slick-arrow-color;
|
| 73 |
+
opacity: @slick-opacity-default;
|
| 74 |
+
-webkit-font-smoothing: antialiased;
|
| 75 |
+
-moz-osx-font-smoothing: grayscale;
|
| 76 |
+
}
|
| 77 |
+
|
| 78 |
+
.slick-prev {
|
| 79 |
+
left: -25px;
|
| 80 |
+
&[dir="rtl"] {
|
| 81 |
+
left: auto;
|
| 82 |
+
right: -25px;
|
| 83 |
+
}
|
| 84 |
+
&:before {
|
| 85 |
+
content: @slick-prev-character;
|
| 86 |
+
&[dir="rtl"] {
|
| 87 |
+
content: @slick-next-character;
|
| 88 |
+
}
|
| 89 |
+
}
|
| 90 |
+
}
|
| 91 |
+
|
| 92 |
+
.slick-next {
|
| 93 |
+
right: -25px;
|
| 94 |
+
&[dir="rtl"] {
|
| 95 |
+
left: -25px;
|
| 96 |
+
right: auto;
|
| 97 |
+
}
|
| 98 |
+
&:before {
|
| 99 |
+
content: @slick-next-character;
|
| 100 |
+
&[dir="rtl"] {
|
| 101 |
+
content: @slick-prev-character;
|
| 102 |
+
}
|
| 103 |
+
}
|
| 104 |
+
}
|
| 105 |
+
|
| 106 |
+
/* Dots */
|
| 107 |
+
|
| 108 |
+
.slick-slider {
|
| 109 |
+
margin-bottom: 30px;
|
| 110 |
+
}
|
| 111 |
+
|
| 112 |
+
.slick-dots {
|
| 113 |
+
position: absolute;
|
| 114 |
+
bottom: -45px;
|
| 115 |
+
list-style: none;
|
| 116 |
+
display: block;
|
| 117 |
+
text-align: center;
|
| 118 |
+
padding: 0;
|
| 119 |
+
width: 100%;
|
| 120 |
+
li {
|
| 121 |
+
position: relative;
|
| 122 |
+
display: inline-block;
|
| 123 |
+
height: 20px;
|
| 124 |
+
width: 20px;
|
| 125 |
+
margin: 0 5px;
|
| 126 |
+
padding: 0;
|
| 127 |
+
cursor: pointer;
|
| 128 |
+
button {
|
| 129 |
+
border: 0;
|
| 130 |
+
background: transparent;
|
| 131 |
+
display: block;
|
| 132 |
+
height: 20px;
|
| 133 |
+
width: 20px;
|
| 134 |
+
outline: none;
|
| 135 |
+
line-height: 0px;
|
| 136 |
+
font-size: 0px;
|
| 137 |
+
color: transparent;
|
| 138 |
+
padding: 5px;
|
| 139 |
+
cursor: pointer;
|
| 140 |
+
&:hover, &:focus {
|
| 141 |
+
outline: none;
|
| 142 |
+
&:before {
|
| 143 |
+
opacity: @slick-opacity-on-hover;
|
| 144 |
+
}
|
| 145 |
+
}
|
| 146 |
+
&:before {
|
| 147 |
+
position: absolute;
|
| 148 |
+
top: 0;
|
| 149 |
+
left: 0;
|
| 150 |
+
content: @slick-dot-character;
|
| 151 |
+
width: 20px;
|
| 152 |
+
height: 20px;
|
| 153 |
+
font-family: @slick-font-family;
|
| 154 |
+
font-size: @slick-dot-size;
|
| 155 |
+
line-height: 20px;
|
| 156 |
+
text-align: center;
|
| 157 |
+
color: @slick-dot-color;
|
| 158 |
+
opacity: @slick-opacity-not-active;
|
| 159 |
+
-webkit-font-smoothing: antialiased;
|
| 160 |
+
-moz-osx-font-smoothing: grayscale;
|
| 161 |
+
}
|
| 162 |
+
}
|
| 163 |
+
&.slick-active button:before {
|
| 164 |
+
color: @slick-dot-color-active;
|
| 165 |
+
opacity: @slick-opacity-default;
|
| 166 |
+
}
|
| 167 |
+
}
|
| 168 |
+
}
|
assets/js/slick/slick-theme.scss
ADDED
|
@@ -0,0 +1,190 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@charset "UTF-8";
|
| 2 |
+
|
| 3 |
+
// Default Variables
|
| 4 |
+
|
| 5 |
+
$slick-font-path: "./fonts/" !default;
|
| 6 |
+
$slick-font-family: "slick" !default;
|
| 7 |
+
$slick-loader-path: "./" !default;
|
| 8 |
+
$slick-arrow-color: white !default;
|
| 9 |
+
$slick-dot-color: black !default;
|
| 10 |
+
$slick-dot-color-active: $slick-dot-color !default;
|
| 11 |
+
$slick-prev-character: "←" !default;
|
| 12 |
+
$slick-next-character: "→" !default;
|
| 13 |
+
$slick-dot-character: "•" !default;
|
| 14 |
+
$slick-dot-size: 6px !default;
|
| 15 |
+
$slick-opacity-default: 0.75 !default;
|
| 16 |
+
$slick-opacity-on-hover: 1 !default;
|
| 17 |
+
$slick-opacity-not-active: 0.25 !default;
|
| 18 |
+
|
| 19 |
+
@function slick-image-url($url) {
|
| 20 |
+
@if function-exists(image-url) {
|
| 21 |
+
@return image-url($url);
|
| 22 |
+
}
|
| 23 |
+
@else {
|
| 24 |
+
@return url($slick-loader-path + $url);
|
| 25 |
+
}
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
@function slick-font-url($url) {
|
| 29 |
+
@if function-exists(font-url) {
|
| 30 |
+
@return font-url($url);
|
| 31 |
+
}
|
| 32 |
+
@else {
|
| 33 |
+
@return url($slick-font-path + $url);
|
| 34 |
+
}
|
| 35 |
+
}
|
| 36 |
+
|
| 37 |
+
/* Slider */
|
| 38 |
+
|
| 39 |
+
.slick-list {
|
| 40 |
+
.slick-loading & {
|
| 41 |
+
background: #fff slick-image-url("ajax-loader.gif") center center no-repeat;
|
| 42 |
+
}
|
| 43 |
+
}
|
| 44 |
+
|
| 45 |
+
/* Icons */
|
| 46 |
+
@if $slick-font-family == "slick" {
|
| 47 |
+
@font-face {
|
| 48 |
+
font-family: "slick";
|
| 49 |
+
src: slick-font-url("slick.eot");
|
| 50 |
+
src: slick-font-url("slick.eot?#iefix") format("embedded-opentype"), slick-font-url("slick.woff") format("woff"), slick-font-url("slick.ttf") format("truetype"), slick-font-url("slick.svg#slick") format("svg");
|
| 51 |
+
font-weight: normal;
|
| 52 |
+
font-style: normal;
|
| 53 |
+
}
|
| 54 |
+
}
|
| 55 |
+
|
| 56 |
+
/* Arrows */
|
| 57 |
+
|
| 58 |
+
.slick-prev,
|
| 59 |
+
.slick-next {
|
| 60 |
+
position: absolute;
|
| 61 |
+
display: block;
|
| 62 |
+
height: 20px;
|
| 63 |
+
width: 20px;
|
| 64 |
+
line-height: 0px;
|
| 65 |
+
font-size: 0px;
|
| 66 |
+
cursor: pointer;
|
| 67 |
+
background: transparent;
|
| 68 |
+
color: transparent;
|
| 69 |
+
top: 50%;
|
| 70 |
+
margin-top: -10px\9; /*lte IE 8*/
|
| 71 |
+
-webkit-transform: translate(0, -50%);
|
| 72 |
+
-ms-transform: translate(0, -50%);
|
| 73 |
+
transform: translate(0, -50%);
|
| 74 |
+
padding: 0;
|
| 75 |
+
border: none;
|
| 76 |
+
outline: none;
|
| 77 |
+
&:hover, &:focus {
|
| 78 |
+
outline: none;
|
| 79 |
+
background: transparent;
|
| 80 |
+
color: transparent;
|
| 81 |
+
&:before {
|
| 82 |
+
opacity: $slick-opacity-on-hover;
|
| 83 |
+
}
|
| 84 |
+
}
|
| 85 |
+
&.slick-disabled:before {
|
| 86 |
+
opacity: $slick-opacity-not-active;
|
| 87 |
+
}
|
| 88 |
+
}
|
| 89 |
+
|
| 90 |
+
.slick-prev:before, .slick-next:before {
|
| 91 |
+
font-family: $slick-font-family;
|
| 92 |
+
font-size: 20px;
|
| 93 |
+
line-height: 1;
|
| 94 |
+
color: $slick-arrow-color;
|
| 95 |
+
opacity: $slick-opacity-default;
|
| 96 |
+
-webkit-font-smoothing: antialiased;
|
| 97 |
+
-moz-osx-font-smoothing: grayscale;
|
| 98 |
+
}
|
| 99 |
+
|
| 100 |
+
.slick-prev {
|
| 101 |
+
left: -25px;
|
| 102 |
+
[dir="rtl"] & {
|
| 103 |
+
left: auto;
|
| 104 |
+
right: -25px;
|
| 105 |
+
}
|
| 106 |
+
&:before {
|
| 107 |
+
content: $slick-prev-character;
|
| 108 |
+
[dir="rtl"] & {
|
| 109 |
+
content: $slick-next-character;
|
| 110 |
+
}
|
| 111 |
+
}
|
| 112 |
+
}
|
| 113 |
+
|
| 114 |
+
.slick-next {
|
| 115 |
+
right: -25px;
|
| 116 |
+
[dir="rtl"] & {
|
| 117 |
+
left: -25px;
|
| 118 |
+
right: auto;
|
| 119 |
+
}
|
| 120 |
+
&:before {
|
| 121 |
+
content: $slick-next-character;
|
| 122 |
+
[dir="rtl"] & {
|
| 123 |
+
content: $slick-prev-character;
|
| 124 |
+
}
|
| 125 |
+
}
|
| 126 |
+
}
|
| 127 |
+
|
| 128 |
+
/* Dots */
|
| 129 |
+
|
| 130 |
+
.slick-slider {
|
| 131 |
+
margin-bottom: 30px;
|
| 132 |
+
}
|
| 133 |
+
|
| 134 |
+
.slick-dots {
|
| 135 |
+
position: absolute;
|
| 136 |
+
bottom: -45px;
|
| 137 |
+
list-style: none;
|
| 138 |
+
display: block;
|
| 139 |
+
text-align: center;
|
| 140 |
+
padding: 0;
|
| 141 |
+
width: 100%;
|
| 142 |
+
li {
|
| 143 |
+
position: relative;
|
| 144 |
+
display: inline-block;
|
| 145 |
+
height: 20px;
|
| 146 |
+
width: 20px;
|
| 147 |
+
margin: 0 5px;
|
| 148 |
+
padding: 0;
|
| 149 |
+
cursor: pointer;
|
| 150 |
+
button {
|
| 151 |
+
border: 0;
|
| 152 |
+
background: transparent;
|
| 153 |
+
display: block;
|
| 154 |
+
height: 20px;
|
| 155 |
+
width: 20px;
|
| 156 |
+
outline: none;
|
| 157 |
+
line-height: 0px;
|
| 158 |
+
font-size: 0px;
|
| 159 |
+
color: transparent;
|
| 160 |
+
padding: 5px;
|
| 161 |
+
cursor: pointer;
|
| 162 |
+
&:hover, &:focus {
|
| 163 |
+
outline: none;
|
| 164 |
+
&:before {
|
| 165 |
+
opacity: $slick-opacity-on-hover;
|
| 166 |
+
}
|
| 167 |
+
}
|
| 168 |
+
&:before {
|
| 169 |
+
position: absolute;
|
| 170 |
+
top: 0;
|
| 171 |
+
left: 0;
|
| 172 |
+
content: $slick-dot-character;
|
| 173 |
+
width: 20px;
|
| 174 |
+
height: 20px;
|
| 175 |
+
font-family: $slick-font-family;
|
| 176 |
+
font-size: $slick-dot-size;
|
| 177 |
+
line-height: 20px;
|
| 178 |
+
text-align: center;
|
| 179 |
+
color: $slick-dot-color;
|
| 180 |
+
opacity: $slick-opacity-not-active;
|
| 181 |
+
-webkit-font-smoothing: antialiased;
|
| 182 |
+
-moz-osx-font-smoothing: grayscale;
|
| 183 |
+
}
|
| 184 |
+
}
|
| 185 |
+
&.slick-active button:before {
|
| 186 |
+
color: $slick-dot-color-active;
|
| 187 |
+
opacity: $slick-opacity-default;
|
| 188 |
+
}
|
| 189 |
+
}
|
| 190 |
+
}
|
assets/js/slick/slick.css
ADDED
|
@@ -0,0 +1,119 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* Slider */
|
| 2 |
+
.slick-slider
|
| 3 |
+
{
|
| 4 |
+
position: relative;
|
| 5 |
+
|
| 6 |
+
display: block;
|
| 7 |
+
|
| 8 |
+
-moz-box-sizing: border-box;
|
| 9 |
+
box-sizing: border-box;
|
| 10 |
+
|
| 11 |
+
-webkit-user-select: none;
|
| 12 |
+
-moz-user-select: none;
|
| 13 |
+
-ms-user-select: none;
|
| 14 |
+
user-select: none;
|
| 15 |
+
|
| 16 |
+
-webkit-touch-callout: none;
|
| 17 |
+
-khtml-user-select: none;
|
| 18 |
+
-ms-touch-action: pan-y;
|
| 19 |
+
touch-action: pan-y;
|
| 20 |
+
-webkit-tap-highlight-color: transparent;
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
.slick-list
|
| 24 |
+
{
|
| 25 |
+
position: relative;
|
| 26 |
+
|
| 27 |
+
display: block;
|
| 28 |
+
overflow: hidden;
|
| 29 |
+
|
| 30 |
+
margin: 0;
|
| 31 |
+
padding: 0;
|
| 32 |
+
}
|
| 33 |
+
.slick-list:focus
|
| 34 |
+
{
|
| 35 |
+
outline: none;
|
| 36 |
+
}
|
| 37 |
+
.slick-list.dragging
|
| 38 |
+
{
|
| 39 |
+
cursor: pointer;
|
| 40 |
+
cursor: hand;
|
| 41 |
+
}
|
| 42 |
+
|
| 43 |
+
.slick-slider .slick-track,
|
| 44 |
+
.slick-slider .slick-list
|
| 45 |
+
{
|
| 46 |
+
-webkit-transform: translate3d(0, 0, 0);
|
| 47 |
+
-moz-transform: translate3d(0, 0, 0);
|
| 48 |
+
-ms-transform: translate3d(0, 0, 0);
|
| 49 |
+
-o-transform: translate3d(0, 0, 0);
|
| 50 |
+
transform: translate3d(0, 0, 0);
|
| 51 |
+
}
|
| 52 |
+
|
| 53 |
+
.slick-track
|
| 54 |
+
{
|
| 55 |
+
position: relative;
|
| 56 |
+
top: 0;
|
| 57 |
+
left: 0;
|
| 58 |
+
|
| 59 |
+
display: block;
|
| 60 |
+
}
|
| 61 |
+
.slick-track:before,
|
| 62 |
+
.slick-track:after
|
| 63 |
+
{
|
| 64 |
+
display: table;
|
| 65 |
+
|
| 66 |
+
content: '';
|
| 67 |
+
}
|
| 68 |
+
.slick-track:after
|
| 69 |
+
{
|
| 70 |
+
clear: both;
|
| 71 |
+
}
|
| 72 |
+
.slick-loading .slick-track
|
| 73 |
+
{
|
| 74 |
+
visibility: hidden;
|
| 75 |
+
}
|
| 76 |
+
|
| 77 |
+
.slick-slide
|
| 78 |
+
{
|
| 79 |
+
display: none;
|
| 80 |
+
float: left;
|
| 81 |
+
|
| 82 |
+
height: 100%;
|
| 83 |
+
min-height: 1px;
|
| 84 |
+
}
|
| 85 |
+
[dir='rtl'] .slick-slide
|
| 86 |
+
{
|
| 87 |
+
float: right;
|
| 88 |
+
}
|
| 89 |
+
.slick-slide img
|
| 90 |
+
{
|
| 91 |
+
display: block;
|
| 92 |
+
}
|
| 93 |
+
.slick-slide.slick-loading img
|
| 94 |
+
{
|
| 95 |
+
display: none;
|
| 96 |
+
}
|
| 97 |
+
.slick-slide.dragging img
|
| 98 |
+
{
|
| 99 |
+
pointer-events: none;
|
| 100 |
+
}
|
| 101 |
+
.slick-initialized .slick-slide
|
| 102 |
+
{
|
| 103 |
+
display: block;
|
| 104 |
+
}
|
| 105 |
+
.slick-loading .slick-slide
|
| 106 |
+
{
|
| 107 |
+
visibility: hidden;
|
| 108 |
+
}
|
| 109 |
+
.slick-vertical .slick-slide
|
| 110 |
+
{
|
| 111 |
+
display: block;
|
| 112 |
+
|
| 113 |
+
height: auto;
|
| 114 |
+
|
| 115 |
+
border: 1px solid transparent;
|
| 116 |
+
}
|
| 117 |
+
.slick-arrow.slick-hidden {
|
| 118 |
+
display: none;
|
| 119 |
+
}
|
assets/js/slick/slick.js
ADDED
|
@@ -0,0 +1,2670 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/*
|
| 2 |
+
_ _ _ _
|
| 3 |
+
___| (_) ___| | __ (_)___
|
| 4 |
+
/ __| | |/ __| |/ / | / __|
|
| 5 |
+
\__ \ | | (__| < _ | \__ \
|
| 6 |
+
|___/_|_|\___|_|\_(_)/ |___/
|
| 7 |
+
|__/
|
| 8 |
+
|
| 9 |
+
Version: 1.5.9
|
| 10 |
+
Author: Ken Wheeler
|
| 11 |
+
Website: http://kenwheeler.github.io
|
| 12 |
+
Docs: http://kenwheeler.github.io/slick
|
| 13 |
+
Repo: http://github.com/kenwheeler/slick
|
| 14 |
+
Issues: http://github.com/kenwheeler/slick/issues
|
| 15 |
+
|
| 16 |
+
*/
|
| 17 |
+
/* global window, document, define, jQuery, setInterval, clearInterval */
|
| 18 |
+
(function(factory) {
|
| 19 |
+
'use strict';
|
| 20 |
+
if (typeof define === 'function' && define.amd) {
|
| 21 |
+
define(['jquery'], factory);
|
| 22 |
+
} else if (typeof exports !== 'undefined') {
|
| 23 |
+
module.exports = factory(require('jquery'));
|
| 24 |
+
} else {
|
| 25 |
+
factory(jQuery);
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
}(function($) {
|
| 29 |
+
'use strict';
|
| 30 |
+
var Slick = window.Slick || {};
|
| 31 |
+
|
| 32 |
+
Slick = (function() {
|
| 33 |
+
|
| 34 |
+
var instanceUid = 0;
|
| 35 |
+
|
| 36 |
+
function Slick(element, settings) {
|
| 37 |
+
|
| 38 |
+
var _ = this, dataSettings;
|
| 39 |
+
|
| 40 |
+
_.defaults = {
|
| 41 |
+
accessibility: true,
|
| 42 |
+
adaptiveHeight: false,
|
| 43 |
+
appendArrows: $(element),
|
| 44 |
+
appendDots: $(element),
|
| 45 |
+
arrows: true,
|
| 46 |
+
asNavFor: null,
|
| 47 |
+
prevArrow: '<button type="button" data-role="none" class="slick-prev" aria-label="Previous" tabindex="0" role="button">Previous</button>',
|
| 48 |
+
nextArrow: '<button type="button" data-role="none" class="slick-next" aria-label="Next" tabindex="0" role="button">Next</button>',
|
| 49 |
+
autoplay: false,
|
| 50 |
+
autoplaySpeed: 3000,
|
| 51 |
+
centerMode: false,
|
| 52 |
+
centerPadding: '50px',
|
| 53 |
+
cssEase: 'ease',
|
| 54 |
+
customPaging: function(slider, i) {
|
| 55 |
+
return '<button type="button" data-role="none" role="button" aria-required="false" tabindex="0">' + (i + 1) + '</button>';
|
| 56 |
+
},
|
| 57 |
+
dots: false,
|
| 58 |
+
dotsClass: 'slick-dots',
|
| 59 |
+
draggable: true,
|
| 60 |
+
easing: 'linear',
|
| 61 |
+
edgeFriction: 0.35,
|
| 62 |
+
fade: false,
|
| 63 |
+
focusOnSelect: false,
|
| 64 |
+
infinite: true,
|
| 65 |
+
initialSlide: 0,
|
| 66 |
+
lazyLoad: 'ondemand',
|
| 67 |
+
mobileFirst: false,
|
| 68 |
+
pauseOnHover: true,
|
| 69 |
+
pauseOnDotsHover: false,
|
| 70 |
+
respondTo: 'window',
|
| 71 |
+
responsive: null,
|
| 72 |
+
rows: 1,
|
| 73 |
+
rtl: false,
|
| 74 |
+
slide: '',
|
| 75 |
+
slidesPerRow: 1,
|
| 76 |
+
slidesToShow: 1,
|
| 77 |
+
slidesToScroll: 1,
|
| 78 |
+
speed: 500,
|
| 79 |
+
swipe: true,
|
| 80 |
+
swipeToSlide: false,
|
| 81 |
+
touchMove: true,
|
| 82 |
+
touchThreshold: 5,
|
| 83 |
+
useCSS: true,
|
| 84 |
+
useTransform: false,
|
| 85 |
+
variableWidth: false,
|
| 86 |
+
vertical: false,
|
| 87 |
+
verticalSwiping: false,
|
| 88 |
+
waitForAnimate: true,
|
| 89 |
+
zIndex: 1000
|
| 90 |
+
};
|
| 91 |
+
|
| 92 |
+
_.initials = {
|
| 93 |
+
animating: false,
|
| 94 |
+
dragging: false,
|
| 95 |
+
autoPlayTimer: null,
|
| 96 |
+
currentDirection: 0,
|
| 97 |
+
currentLeft: null,
|
| 98 |
+
currentSlide: 0,
|
| 99 |
+
direction: 1,
|
| 100 |
+
$dots: null,
|
| 101 |
+
listWidth: null,
|
| 102 |
+
listHeight: null,
|
| 103 |
+
loadIndex: 0,
|
| 104 |
+
$nextArrow: null,
|
| 105 |
+
$prevArrow: null,
|
| 106 |
+
slideCount: null,
|
| 107 |
+
slideWidth: null,
|
| 108 |
+
$slideTrack: null,
|
| 109 |
+
$slides: null,
|
| 110 |
+
sliding: false,
|
| 111 |
+
slideOffset: 0,
|
| 112 |
+
swipeLeft: null,
|
| 113 |
+
$list: null,
|
| 114 |
+
touchObject: {},
|
| 115 |
+
transformsEnabled: false,
|
| 116 |
+
unslicked: false
|
| 117 |
+
};
|
| 118 |
+
|
| 119 |
+
$.extend(_, _.initials);
|
| 120 |
+
|
| 121 |
+
_.activeBreakpoint = null;
|
| 122 |
+
_.animType = null;
|
| 123 |
+
_.animProp = null;
|
| 124 |
+
_.breakpoints = [];
|
| 125 |
+
_.breakpointSettings = [];
|
| 126 |
+
_.cssTransitions = false;
|
| 127 |
+
_.hidden = 'hidden';
|
| 128 |
+
_.paused = false;
|
| 129 |
+
_.positionProp = null;
|
| 130 |
+
_.respondTo = null;
|
| 131 |
+
_.rowCount = 1;
|
| 132 |
+
_.shouldClick = true;
|
| 133 |
+
_.$slider = $(element);
|
| 134 |
+
_.$slidesCache = null;
|
| 135 |
+
_.transformType = null;
|
| 136 |
+
_.transitionType = null;
|
| 137 |
+
_.visibilityChange = 'visibilitychange';
|
| 138 |
+
_.windowWidth = 0;
|
| 139 |
+
_.windowTimer = null;
|
| 140 |
+
|
| 141 |
+
dataSettings = $(element).data('slick') || {};
|
| 142 |
+
|
| 143 |
+
_.options = $.extend({}, _.defaults, dataSettings, settings);
|
| 144 |
+
|
| 145 |
+
_.currentSlide = _.options.initialSlide;
|
| 146 |
+
|
| 147 |
+
_.originalSettings = _.options;
|
| 148 |
+
|
| 149 |
+
if (typeof document.mozHidden !== 'undefined') {
|
| 150 |
+
_.hidden = 'mozHidden';
|
| 151 |
+
_.visibilityChange = 'mozvisibilitychange';
|
| 152 |
+
} else if (typeof document.webkitHidden !== 'undefined') {
|
| 153 |
+
_.hidden = 'webkitHidden';
|
| 154 |
+
_.visibilityChange = 'webkitvisibilitychange';
|
| 155 |
+
}
|
| 156 |
+
|
| 157 |
+
_.autoPlay = $.proxy(_.autoPlay, _);
|
| 158 |
+
_.autoPlayClear = $.proxy(_.autoPlayClear, _);
|
| 159 |
+
_.changeSlide = $.proxy(_.changeSlide, _);
|
| 160 |
+
_.clickHandler = $.proxy(_.clickHandler, _);
|
| 161 |
+
_.selectHandler = $.proxy(_.selectHandler, _);
|
| 162 |
+
_.setPosition = $.proxy(_.setPosition, _);
|
| 163 |
+
_.swipeHandler = $.proxy(_.swipeHandler, _);
|
| 164 |
+
_.dragHandler = $.proxy(_.dragHandler, _);
|
| 165 |
+
_.keyHandler = $.proxy(_.keyHandler, _);
|
| 166 |
+
_.autoPlayIterator = $.proxy(_.autoPlayIterator, _);
|
| 167 |
+
|
| 168 |
+
_.instanceUid = instanceUid++;
|
| 169 |
+
|
| 170 |
+
// A simple way to check for HTML strings
|
| 171 |
+
// Strict HTML recognition (must start with <)
|
| 172 |
+
// Extracted from jQuery v1.11 source
|
| 173 |
+
_.htmlExpr = /^(?:\s*(<[\w\W]+>)[^>]*)$/;
|
| 174 |
+
|
| 175 |
+
|
| 176 |
+
_.registerBreakpoints();
|
| 177 |
+
_.init(true);
|
| 178 |
+
_.checkResponsive(true);
|
| 179 |
+
|
| 180 |
+
}
|
| 181 |
+
|
| 182 |
+
return Slick;
|
| 183 |
+
|
| 184 |
+
}());
|
| 185 |
+
|
| 186 |
+
Slick.prototype.addSlide = Slick.prototype.slickAdd = function(markup, index, addBefore) {
|
| 187 |
+
|
| 188 |
+
var _ = this;
|
| 189 |
+
|
| 190 |
+
if (typeof(index) === 'boolean') {
|
| 191 |
+
addBefore = index;
|
| 192 |
+
index = null;
|
| 193 |
+
} else if (index < 0 || (index >= _.slideCount)) {
|
| 194 |
+
return false;
|
| 195 |
+
}
|
| 196 |
+
|
| 197 |
+
_.unload();
|
| 198 |
+
|
| 199 |
+
if (typeof(index) === 'number') {
|
| 200 |
+
if (index === 0 && _.$slides.length === 0) {
|
| 201 |
+
$(markup).appendTo(_.$slideTrack);
|
| 202 |
+
} else if (addBefore) {
|
| 203 |
+
$(markup).insertBefore(_.$slides.eq(index));
|
| 204 |
+
} else {
|
| 205 |
+
$(markup).insertAfter(_.$slides.eq(index));
|
| 206 |
+
}
|
| 207 |
+
} else {
|
| 208 |
+
if (addBefore === true) {
|
| 209 |
+
$(markup).prependTo(_.$slideTrack);
|
| 210 |
+
} else {
|
| 211 |
+
$(markup).appendTo(_.$slideTrack);
|
| 212 |
+
}
|
| 213 |
+
}
|
| 214 |
+
|
| 215 |
+
_.$slides = _.$slideTrack.children(this.options.slide);
|
| 216 |
+
|
| 217 |
+
_.$slideTrack.children(this.options.slide).detach();
|
| 218 |
+
|
| 219 |
+
_.$slideTrack.append(_.$slides);
|
| 220 |
+
|
| 221 |
+
_.$slides.each(function(index, element) {
|
| 222 |
+
$(element).attr('data-slick-index', index);
|
| 223 |
+
});
|
| 224 |
+
|
| 225 |
+
_.$slidesCache = _.$slides;
|
| 226 |
+
|
| 227 |
+
_.reinit();
|
| 228 |
+
|
| 229 |
+
};
|
| 230 |
+
|
| 231 |
+
Slick.prototype.animateHeight = function() {
|
| 232 |
+
var _ = this;
|
| 233 |
+
if (_.options.slidesToShow === 1 && _.options.adaptiveHeight === true && _.options.vertical === false) {
|
| 234 |
+
var targetHeight = _.$slides.eq(_.currentSlide).outerHeight(true);
|
| 235 |
+
_.$list.animate({
|
| 236 |
+
height: targetHeight
|
| 237 |
+
}, _.options.speed);
|
| 238 |
+
}
|
| 239 |
+
};
|
| 240 |
+
|
| 241 |
+
Slick.prototype.animateSlide = function(targetLeft, callback) {
|
| 242 |
+
|
| 243 |
+
var animProps = {},
|
| 244 |
+
_ = this;
|
| 245 |
+
|
| 246 |
+
_.animateHeight();
|
| 247 |
+
|
| 248 |
+
if (_.options.rtl === true && _.options.vertical === false) {
|
| 249 |
+
targetLeft = -targetLeft;
|
| 250 |
+
}
|
| 251 |
+
if (_.transformsEnabled === false) {
|
| 252 |
+
if (_.options.vertical === false) {
|
| 253 |
+
_.$slideTrack.animate({
|
| 254 |
+
left: targetLeft
|
| 255 |
+
}, _.options.speed, _.options.easing, callback);
|
| 256 |
+
} else {
|
| 257 |
+
_.$slideTrack.animate({
|
| 258 |
+
top: targetLeft
|
| 259 |
+
}, _.options.speed, _.options.easing, callback);
|
| 260 |
+
}
|
| 261 |
+
|
| 262 |
+
} else {
|
| 263 |
+
|
| 264 |
+
if (_.cssTransitions === false) {
|
| 265 |
+
if (_.options.rtl === true) {
|
| 266 |
+
_.currentLeft = -(_.currentLeft);
|
| 267 |
+
}
|
| 268 |
+
$({
|
| 269 |
+
animStart: _.currentLeft
|
| 270 |
+
}).animate({
|
| 271 |
+
animStart: targetLeft
|
| 272 |
+
}, {
|
| 273 |
+
duration: _.options.speed,
|
| 274 |
+
easing: _.options.easing,
|
| 275 |
+
step: function(now) {
|
| 276 |
+
now = Math.ceil(now);
|
| 277 |
+
if (_.options.vertical === false) {
|
| 278 |
+
animProps[_.animType] = 'translate(' +
|
| 279 |
+
now + 'px, 0px)';
|
| 280 |
+
_.$slideTrack.css(animProps);
|
| 281 |
+
} else {
|
| 282 |
+
animProps[_.animType] = 'translate(0px,' +
|
| 283 |
+
now + 'px)';
|
| 284 |
+
_.$slideTrack.css(animProps);
|
| 285 |
+
}
|
| 286 |
+
},
|
| 287 |
+
complete: function() {
|
| 288 |
+
if (callback) {
|
| 289 |
+
callback.call();
|
| 290 |
+
}
|
| 291 |
+
}
|
| 292 |
+
});
|
| 293 |
+
|
| 294 |
+
} else {
|
| 295 |
+
|
| 296 |
+
_.applyTransition();
|
| 297 |
+
targetLeft = Math.ceil(targetLeft);
|
| 298 |
+
|
| 299 |
+
if (_.options.vertical === false) {
|
| 300 |
+
animProps[_.animType] = 'translate3d(' + targetLeft + 'px, 0px, 0px)';
|
| 301 |
+
} else {
|
| 302 |
+
animProps[_.animType] = 'translate3d(0px,' + targetLeft + 'px, 0px)';
|
| 303 |
+
}
|
| 304 |
+
_.$slideTrack.css(animProps);
|
| 305 |
+
|
| 306 |
+
if (callback) {
|
| 307 |
+
setTimeout(function() {
|
| 308 |
+
|
| 309 |
+
_.disableTransition();
|
| 310 |
+
|
| 311 |
+
callback.call();
|
| 312 |
+
}, _.options.speed);
|
| 313 |
+
}
|
| 314 |
+
|
| 315 |
+
}
|
| 316 |
+
|
| 317 |
+
}
|
| 318 |
+
|
| 319 |
+
};
|
| 320 |
+
|
| 321 |
+
Slick.prototype.asNavFor = function(index) {
|
| 322 |
+
|
| 323 |
+
var _ = this,
|
| 324 |
+
asNavFor = _.options.asNavFor;
|
| 325 |
+
|
| 326 |
+
if ( asNavFor && asNavFor !== null ) {
|
| 327 |
+
asNavFor = $(asNavFor).not(_.$slider);
|
| 328 |
+
}
|
| 329 |
+
|
| 330 |
+
if ( asNavFor !== null && typeof asNavFor === 'object' ) {
|
| 331 |
+
asNavFor.each(function() {
|
| 332 |
+
var target = $(this).slick('getSlick');
|
| 333 |
+
if(!target.unslicked) {
|
| 334 |
+
target.slideHandler(index, true);
|
| 335 |
+
}
|
| 336 |
+
});
|
| 337 |
+
}
|
| 338 |
+
|
| 339 |
+
};
|
| 340 |
+
|
| 341 |
+
Slick.prototype.applyTransition = function(slide) {
|
| 342 |
+
|
| 343 |
+
var _ = this,
|
| 344 |
+
transition = {};
|
| 345 |
+
|
| 346 |
+
if (_.options.fade === false) {
|
| 347 |
+
transition[_.transitionType] = _.transformType + ' ' + _.options.speed + 'ms ' + _.options.cssEase;
|
| 348 |
+
} else {
|
| 349 |
+
transition[_.transitionType] = 'opacity ' + _.options.speed + 'ms ' + _.options.cssEase;
|
| 350 |
+
}
|
| 351 |
+
|
| 352 |
+
if (_.options.fade === false) {
|
| 353 |
+
_.$slideTrack.css(transition);
|
| 354 |
+
} else {
|
| 355 |
+
_.$slides.eq(slide).css(transition);
|
| 356 |
+
}
|
| 357 |
+
|
| 358 |
+
};
|
| 359 |
+
|
| 360 |
+
Slick.prototype.autoPlay = function() {
|
| 361 |
+
|
| 362 |
+
var _ = this;
|
| 363 |
+
|
| 364 |
+
if (_.autoPlayTimer) {
|
| 365 |
+
clearInterval(_.autoPlayTimer);
|
| 366 |
+
}
|
| 367 |
+
|
| 368 |
+
if (_.slideCount > _.options.slidesToShow && _.paused !== true) {
|
| 369 |
+
_.autoPlayTimer = setInterval(_.autoPlayIterator,
|
| 370 |
+
_.options.autoplaySpeed);
|
| 371 |
+
}
|
| 372 |
+
|
| 373 |
+
};
|
| 374 |
+
|
| 375 |
+
Slick.prototype.autoPlayClear = function() {
|
| 376 |
+
|
| 377 |
+
var _ = this;
|
| 378 |
+
if (_.autoPlayTimer) {
|
| 379 |
+
clearInterval(_.autoPlayTimer);
|
| 380 |
+
}
|
| 381 |
+
|
| 382 |
+
};
|
| 383 |
+
|
| 384 |
+
Slick.prototype.autoPlayIterator = function() {
|
| 385 |
+
|
| 386 |
+
var _ = this;
|
| 387 |
+
|
| 388 |
+
if (_.options.infinite === false) {
|
| 389 |
+
|
| 390 |
+
if (_.direction === 1) {
|
| 391 |
+
|
| 392 |
+
if ((_.currentSlide + 1) === _.slideCount -
|
| 393 |
+
1) {
|
| 394 |
+
_.direction = 0;
|
| 395 |
+
}
|
| 396 |
+
|
| 397 |
+
_.slideHandler(_.currentSlide + _.options.slidesToScroll);
|
| 398 |
+
|
| 399 |
+
} else {
|
| 400 |
+
|
| 401 |
+
if ((_.currentSlide - 1 === 0)) {
|
| 402 |
+
|
| 403 |
+
_.direction = 1;
|
| 404 |
+
|
| 405 |
+
}
|
| 406 |
+
|
| 407 |
+
_.slideHandler(_.currentSlide - _.options.slidesToScroll);
|
| 408 |
+
|
| 409 |
+
}
|
| 410 |
+
|
| 411 |
+
} else {
|
| 412 |
+
|
| 413 |
+
_.slideHandler(_.currentSlide + _.options.slidesToScroll);
|
| 414 |
+
|
| 415 |
+
}
|
| 416 |
+
|
| 417 |
+
};
|
| 418 |
+
|
| 419 |
+
Slick.prototype.buildArrows = function() {
|
| 420 |
+
|
| 421 |
+
var _ = this;
|
| 422 |
+
|
| 423 |
+
if (_.options.arrows === true ) {
|
| 424 |
+
|
| 425 |
+
_.$prevArrow = $(_.options.prevArrow).addClass('slick-arrow');
|
| 426 |
+
_.$nextArrow = $(_.options.nextArrow).addClass('slick-arrow');
|
| 427 |
+
|
| 428 |
+
if( _.slideCount > _.options.slidesToShow ) {
|
| 429 |
+
|
| 430 |
+
_.$prevArrow.removeClass('slick-hidden').removeAttr('aria-hidden tabindex');
|
| 431 |
+
_.$nextArrow.removeClass('slick-hidden').removeAttr('aria-hidden tabindex');
|
| 432 |
+
|
| 433 |
+
if (_.htmlExpr.test(_.options.prevArrow)) {
|
| 434 |
+
_.$prevArrow.prependTo(_.options.appendArrows);
|
| 435 |
+
}
|
| 436 |
+
|
| 437 |
+
if (_.htmlExpr.test(_.options.nextArrow)) {
|
| 438 |
+
_.$nextArrow.appendTo(_.options.appendArrows);
|
| 439 |
+
}
|
| 440 |
+
|
| 441 |
+
if (_.options.infinite !== true) {
|
| 442 |
+
_.$prevArrow
|
| 443 |
+
.addClass('slick-disabled')
|
| 444 |
+
.attr('aria-disabled', 'true');
|
| 445 |
+
}
|
| 446 |
+
|
| 447 |
+
} else {
|
| 448 |
+
|
| 449 |
+
_.$prevArrow.add( _.$nextArrow )
|
| 450 |
+
|
| 451 |
+
.addClass('slick-hidden')
|
| 452 |
+
.attr({
|
| 453 |
+
'aria-disabled': 'true',
|
| 454 |
+
'tabindex': '-1'
|
| 455 |
+
});
|
| 456 |
+
|
| 457 |
+
}
|
| 458 |
+
|
| 459 |
+
}
|
| 460 |
+
|
| 461 |
+
};
|
| 462 |
+
|
| 463 |
+
Slick.prototype.buildDots = function() {
|
| 464 |
+
|
| 465 |
+
var _ = this,
|
| 466 |
+
i, dotString;
|
| 467 |
+
|
| 468 |
+
if (_.options.dots === true && _.slideCount > _.options.slidesToShow) {
|
| 469 |
+
|
| 470 |
+
dotString = '<ul class="' + _.options.dotsClass + '">';
|
| 471 |
+
|
| 472 |
+
for (i = 0; i <= _.getDotCount(); i += 1) {
|
| 473 |
+
dotString += '<li>' + _.options.customPaging.call(this, _, i) + '</li>';
|
| 474 |
+
}
|
| 475 |
+
|
| 476 |
+
dotString += '</ul>';
|
| 477 |
+
|
| 478 |
+
_.$dots = $(dotString).appendTo(
|
| 479 |
+
_.options.appendDots);
|
| 480 |
+
|
| 481 |
+
_.$dots.find('li').first().addClass('slick-active').attr('aria-hidden', 'false');
|
| 482 |
+
|
| 483 |
+
}
|
| 484 |
+
|
| 485 |
+
};
|
| 486 |
+
|
| 487 |
+
Slick.prototype.buildOut = function() {
|
| 488 |
+
|
| 489 |
+
var _ = this;
|
| 490 |
+
|
| 491 |
+
_.$slides =
|
| 492 |
+
_.$slider
|
| 493 |
+
.children( _.options.slide + ':not(.slick-cloned)')
|
| 494 |
+
.addClass('slick-slide');
|
| 495 |
+
|
| 496 |
+
_.slideCount = _.$slides.length;
|
| 497 |
+
|
| 498 |
+
_.$slides.each(function(index, element) {
|
| 499 |
+
$(element)
|
| 500 |
+
.attr('data-slick-index', index)
|
| 501 |
+
.data('originalStyling', $(element).attr('style') || '');
|
| 502 |
+
});
|
| 503 |
+
|
| 504 |
+
_.$slider.addClass('slick-slider');
|
| 505 |
+
|
| 506 |
+
_.$slideTrack = (_.slideCount === 0) ?
|
| 507 |
+
$('<div class="slick-track"/>').appendTo(_.$slider) :
|
| 508 |
+
_.$slides.wrapAll('<div class="slick-track"/>').parent();
|
| 509 |
+
|
| 510 |
+
_.$list = _.$slideTrack.wrap(
|
| 511 |
+
'<div aria-live="polite" class="slick-list"/>').parent();
|
| 512 |
+
_.$slideTrack.css('opacity', 0);
|
| 513 |
+
|
| 514 |
+
if (_.options.centerMode === true || _.options.swipeToSlide === true) {
|
| 515 |
+
_.options.slidesToScroll = 1;
|
| 516 |
+
}
|
| 517 |
+
|
| 518 |
+
$('img[data-lazy]', _.$slider).not('[src]').addClass('slick-loading');
|
| 519 |
+
|
| 520 |
+
_.setupInfinite();
|
| 521 |
+
|
| 522 |
+
_.buildArrows();
|
| 523 |
+
|
| 524 |
+
_.buildDots();
|
| 525 |
+
|
| 526 |
+
_.updateDots();
|
| 527 |
+
|
| 528 |
+
|
| 529 |
+
_.setSlideClasses(typeof _.currentSlide === 'number' ? _.currentSlide : 0);
|
| 530 |
+
|
| 531 |
+
if (_.options.draggable === true) {
|
| 532 |
+
_.$list.addClass('draggable');
|
| 533 |
+
}
|
| 534 |
+
|
| 535 |
+
};
|
| 536 |
+
|
| 537 |
+
Slick.prototype.buildRows = function() {
|
| 538 |
+
|
| 539 |
+
var _ = this, a, b, c, newSlides, numOfSlides, originalSlides,slidesPerSection;
|
| 540 |
+
|
| 541 |
+
newSlides = document.createDocumentFragment();
|
| 542 |
+
originalSlides = _.$slider.children();
|
| 543 |
+
|
| 544 |
+
if(_.options.rows > 1) {
|
| 545 |
+
|
| 546 |
+
slidesPerSection = _.options.slidesPerRow * _.options.rows;
|
| 547 |
+
numOfSlides = Math.ceil(
|
| 548 |
+
originalSlides.length / slidesPerSection
|
| 549 |
+
);
|
| 550 |
+
|
| 551 |
+
for(a = 0; a < numOfSlides; a++){
|
| 552 |
+
var slide = document.createElement('div');
|
| 553 |
+
for(b = 0; b < _.options.rows; b++) {
|
| 554 |
+
var row = document.createElement('div');
|
| 555 |
+
for(c = 0; c < _.options.slidesPerRow; c++) {
|
| 556 |
+
var target = (a * slidesPerSection + ((b * _.options.slidesPerRow) + c));
|
| 557 |
+
if (originalSlides.get(target)) {
|
| 558 |
+
row.appendChild(originalSlides.get(target));
|
| 559 |
+
}
|
| 560 |
+
}
|
| 561 |
+
slide.appendChild(row);
|
| 562 |
+
}
|
| 563 |
+
newSlides.appendChild(slide);
|
| 564 |
+
}
|
| 565 |
+
|
| 566 |
+
_.$slider.html(newSlides);
|
| 567 |
+
_.$slider.children().children().children()
|
| 568 |
+
.css({
|
| 569 |
+
'width':(100 / _.options.slidesPerRow) + '%',
|
| 570 |
+
'display': 'inline-block'
|
| 571 |
+
});
|
| 572 |
+
|
| 573 |
+
}
|
| 574 |
+
|
| 575 |
+
};
|
| 576 |
+
|
| 577 |
+
Slick.prototype.checkResponsive = function(initial, forceUpdate) {
|
| 578 |
+
|
| 579 |
+
var _ = this,
|
| 580 |
+
breakpoint, targetBreakpoint, respondToWidth, triggerBreakpoint = false;
|
| 581 |
+
var sliderWidth = _.$slider.width();
|
| 582 |
+
var windowWidth = window.innerWidth || $(window).width();
|
| 583 |
+
|
| 584 |
+
if (_.respondTo === 'window') {
|
| 585 |
+
respondToWidth = windowWidth;
|
| 586 |
+
} else if (_.respondTo === 'slider') {
|
| 587 |
+
respondToWidth = sliderWidth;
|
| 588 |
+
} else if (_.respondTo === 'min') {
|
| 589 |
+
respondToWidth = Math.min(windowWidth, sliderWidth);
|
| 590 |
+
}
|
| 591 |
+
|
| 592 |
+
if ( _.options.responsive &&
|
| 593 |
+
_.options.responsive.length &&
|
| 594 |
+
_.options.responsive !== null) {
|
| 595 |
+
|
| 596 |
+
targetBreakpoint = null;
|
| 597 |
+
|
| 598 |
+
for (breakpoint in _.breakpoints) {
|
| 599 |
+
if (_.breakpoints.hasOwnProperty(breakpoint)) {
|
| 600 |
+
if (_.originalSettings.mobileFirst === false) {
|
| 601 |
+
if (respondToWidth < _.breakpoints[breakpoint]) {
|
| 602 |
+
targetBreakpoint = _.breakpoints[breakpoint];
|
| 603 |
+
}
|
| 604 |
+
} else {
|
| 605 |
+
if (respondToWidth > _.breakpoints[breakpoint]) {
|
| 606 |
+
targetBreakpoint = _.breakpoints[breakpoint];
|
| 607 |
+
}
|
| 608 |
+
}
|
| 609 |
+
}
|
| 610 |
+
}
|
| 611 |
+
|
| 612 |
+
if (targetBreakpoint !== null) {
|
| 613 |
+
if (_.activeBreakpoint !== null) {
|
| 614 |
+
if (targetBreakpoint !== _.activeBreakpoint || forceUpdate) {
|
| 615 |
+
_.activeBreakpoint =
|
| 616 |
+
targetBreakpoint;
|
| 617 |
+
if (_.breakpointSettings[targetBreakpoint] === 'unslick') {
|
| 618 |
+
_.unslick(targetBreakpoint);
|
| 619 |
+
} else {
|
| 620 |
+
_.options = $.extend({}, _.originalSettings,
|
| 621 |
+
_.breakpointSettings[
|
| 622 |
+
targetBreakpoint]);
|
| 623 |
+
if (initial === true) {
|
| 624 |
+
_.currentSlide = _.options.initialSlide;
|
| 625 |
+
}
|
| 626 |
+
_.refresh(initial);
|
| 627 |
+
}
|
| 628 |
+
triggerBreakpoint = targetBreakpoint;
|
| 629 |
+
}
|
| 630 |
+
} else {
|
| 631 |
+
_.activeBreakpoint = targetBreakpoint;
|
| 632 |
+
if (_.breakpointSettings[targetBreakpoint] === 'unslick') {
|
| 633 |
+
_.unslick(targetBreakpoint);
|
| 634 |
+
} else {
|
| 635 |
+
_.options = $.extend({}, _.originalSettings,
|
| 636 |
+
_.breakpointSettings[
|
| 637 |
+
targetBreakpoint]);
|
| 638 |
+
if (initial === true) {
|
| 639 |
+
_.currentSlide = _.options.initialSlide;
|
| 640 |
+
}
|
| 641 |
+
_.refresh(initial);
|
| 642 |
+
}
|
| 643 |
+
triggerBreakpoint = targetBreakpoint;
|
| 644 |
+
}
|
| 645 |
+
} else {
|
| 646 |
+
if (_.activeBreakpoint !== null) {
|
| 647 |
+
_.activeBreakpoint = null;
|
| 648 |
+
_.options = _.originalSettings;
|
| 649 |
+
if (initial === true) {
|
| 650 |
+
_.currentSlide = _.options.initialSlide;
|
| 651 |
+
}
|
| 652 |
+
_.refresh(initial);
|
| 653 |
+
triggerBreakpoint = targetBreakpoint;
|
| 654 |
+
}
|
| 655 |
+
}
|
| 656 |
+
|
| 657 |
+
// only trigger breakpoints during an actual break. not on initialize.
|
| 658 |
+
if( !initial && triggerBreakpoint !== false ) {
|
| 659 |
+
_.$slider.trigger('breakpoint', [_, triggerBreakpoint]);
|
| 660 |
+
}
|
| 661 |
+
}
|
| 662 |
+
|
| 663 |
+
};
|
| 664 |
+
|
| 665 |
+
Slick.prototype.changeSlide = function(event, dontAnimate) {
|
| 666 |
+
|
| 667 |
+
var _ = this,
|
| 668 |
+
$target = $(event.target),
|
| 669 |
+
indexOffset, slideOffset, unevenOffset;
|
| 670 |
+
|
| 671 |
+
// If target is a link, prevent default action.
|
| 672 |
+
if($target.is('a')) {
|
| 673 |
+
event.preventDefault();
|
| 674 |
+
}
|
| 675 |
+
|
| 676 |
+
// If target is not the <li> element (ie: a child), find the <li>.
|
| 677 |
+
if(!$target.is('li')) {
|
| 678 |
+
$target = $target.closest('li');
|
| 679 |
+
}
|
| 680 |
+
|
| 681 |
+
unevenOffset = (_.slideCount % _.options.slidesToScroll !== 0);
|
| 682 |
+
indexOffset = unevenOffset ? 0 : (_.slideCount - _.currentSlide) % _.options.slidesToScroll;
|
| 683 |
+
|
| 684 |
+
switch (event.data.message) {
|
| 685 |
+
|
| 686 |
+
case 'previous':
|
| 687 |
+
slideOffset = indexOffset === 0 ? _.options.slidesToScroll : _.options.slidesToShow - indexOffset;
|
| 688 |
+
if (_.slideCount > _.options.slidesToShow) {
|
| 689 |
+
_.slideHandler(_.currentSlide - slideOffset, false, dontAnimate);
|
| 690 |
+
}
|
| 691 |
+
break;
|
| 692 |
+
|
| 693 |
+
case 'next':
|
| 694 |
+
slideOffset = indexOffset === 0 ? _.options.slidesToScroll : indexOffset;
|
| 695 |
+
if (_.slideCount > _.options.slidesToShow) {
|
| 696 |
+
_.slideHandler(_.currentSlide + slideOffset, false, dontAnimate);
|
| 697 |
+
}
|
| 698 |
+
break;
|
| 699 |
+
|
| 700 |
+
case 'index':
|
| 701 |
+
var index = event.data.index === 0 ? 0 :
|
| 702 |
+
event.data.index || $target.index() * _.options.slidesToScroll;
|
| 703 |
+
|
| 704 |
+
_.slideHandler(_.checkNavigable(index), false, dontAnimate);
|
| 705 |
+
$target.children().trigger('focus');
|
| 706 |
+
break;
|
| 707 |
+
|
| 708 |
+
default:
|
| 709 |
+
return;
|
| 710 |
+
}
|
| 711 |
+
|
| 712 |
+
};
|
| 713 |
+
|
| 714 |
+
Slick.prototype.checkNavigable = function(index) {
|
| 715 |
+
|
| 716 |
+
var _ = this,
|
| 717 |
+
navigables, prevNavigable;
|
| 718 |
+
|
| 719 |
+
navigables = _.getNavigableIndexes();
|
| 720 |
+
prevNavigable = 0;
|
| 721 |
+
if (index > navigables[navigables.length - 1]) {
|
| 722 |
+
index = navigables[navigables.length - 1];
|
| 723 |
+
} else {
|
| 724 |
+
for (var n in navigables) {
|
| 725 |
+
if (index < navigables[n]) {
|
| 726 |
+
index = prevNavigable;
|
| 727 |
+
break;
|
| 728 |
+
}
|
| 729 |
+
prevNavigable = navigables[n];
|
| 730 |
+
}
|
| 731 |
+
}
|
| 732 |
+
|
| 733 |
+
return index;
|
| 734 |
+
};
|
| 735 |
+
|
| 736 |
+
Slick.prototype.cleanUpEvents = function() {
|
| 737 |
+
|
| 738 |
+
var _ = this;
|
| 739 |
+
|
| 740 |
+
if (_.options.dots && _.$dots !== null) {
|
| 741 |
+
|
| 742 |
+
$('li', _.$dots).off('click.slick', _.changeSlide);
|
| 743 |
+
|
| 744 |
+
if (_.options.pauseOnDotsHover === true && _.options.autoplay === true) {
|
| 745 |
+
|
| 746 |
+
$('li', _.$dots)
|
| 747 |
+
.off('mouseenter.slick', $.proxy(_.setPaused, _, true))
|
| 748 |
+
.off('mouseleave.slick', $.proxy(_.setPaused, _, false));
|
| 749 |
+
|
| 750 |
+
}
|
| 751 |
+
|
| 752 |
+
}
|
| 753 |
+
|
| 754 |
+
if (_.options.arrows === true && _.slideCount > _.options.slidesToShow) {
|
| 755 |
+
_.$prevArrow && _.$prevArrow.off('click.slick', _.changeSlide);
|
| 756 |
+
_.$nextArrow && _.$nextArrow.off('click.slick', _.changeSlide);
|
| 757 |
+
}
|
| 758 |
+
|
| 759 |
+
_.$list.off('touchstart.slick mousedown.slick', _.swipeHandler);
|
| 760 |
+
_.$list.off('touchmove.slick mousemove.slick', _.swipeHandler);
|
| 761 |
+
_.$list.off('touchend.slick mouseup.slick', _.swipeHandler);
|
| 762 |
+
_.$list.off('touchcancel.slick mouseleave.slick', _.swipeHandler);
|
| 763 |
+
|
| 764 |
+
_.$list.off('click.slick', _.clickHandler);
|
| 765 |
+
|
| 766 |
+
$(document).off(_.visibilityChange, _.visibility);
|
| 767 |
+
|
| 768 |
+
_.$list.off('mouseenter.slick', $.proxy(_.setPaused, _, true));
|
| 769 |
+
_.$list.off('mouseleave.slick', $.proxy(_.setPaused, _, false));
|
| 770 |
+
|
| 771 |
+
if (_.options.accessibility === true) {
|
| 772 |
+
_.$list.off('keydown.slick', _.keyHandler);
|
| 773 |
+
}
|
| 774 |
+
|
| 775 |
+
if (_.options.focusOnSelect === true) {
|
| 776 |
+
$(_.$slideTrack).children().off('click.slick', _.selectHandler);
|
| 777 |
+
}
|
| 778 |
+
|
| 779 |
+
$(window).off('orientationchange.slick.slick-' + _.instanceUid, _.orientationChange);
|
| 780 |
+
|
| 781 |
+
$(window).off('resize.slick.slick-' + _.instanceUid, _.resize);
|
| 782 |
+
|
| 783 |
+
$('[draggable!=true]', _.$slideTrack).off('dragstart', _.preventDefault);
|
| 784 |
+
|
| 785 |
+
$(window).off('load.slick.slick-' + _.instanceUid, _.setPosition);
|
| 786 |
+
$(document).off('ready.slick.slick-' + _.instanceUid, _.setPosition);
|
| 787 |
+
};
|
| 788 |
+
|
| 789 |
+
Slick.prototype.cleanUpRows = function() {
|
| 790 |
+
|
| 791 |
+
var _ = this, originalSlides;
|
| 792 |
+
|
| 793 |
+
if(_.options.rows > 1) {
|
| 794 |
+
originalSlides = _.$slides.children().children();
|
| 795 |
+
originalSlides.removeAttr('style');
|
| 796 |
+
_.$slider.html(originalSlides);
|
| 797 |
+
}
|
| 798 |
+
|
| 799 |
+
};
|
| 800 |
+
|
| 801 |
+
Slick.prototype.clickHandler = function(event) {
|
| 802 |
+
|
| 803 |
+
var _ = this;
|
| 804 |
+
|
| 805 |
+
if (_.shouldClick === false) {
|
| 806 |
+
event.stopImmediatePropagation();
|
| 807 |
+
event.stopPropagation();
|
| 808 |
+
event.preventDefault();
|
| 809 |
+
}
|
| 810 |
+
|
| 811 |
+
};
|
| 812 |
+
|
| 813 |
+
Slick.prototype.destroy = function(refresh) {
|
| 814 |
+
|
| 815 |
+
var _ = this;
|
| 816 |
+
|
| 817 |
+
_.autoPlayClear();
|
| 818 |
+
|
| 819 |
+
_.touchObject = {};
|
| 820 |
+
|
| 821 |
+
_.cleanUpEvents();
|
| 822 |
+
|
| 823 |
+
$('.slick-cloned', _.$slider).detach();
|
| 824 |
+
|
| 825 |
+
if (_.$dots) {
|
| 826 |
+
_.$dots.remove();
|
| 827 |
+
}
|
| 828 |
+
|
| 829 |
+
|
| 830 |
+
if ( _.$prevArrow && _.$prevArrow.length ) {
|
| 831 |
+
|
| 832 |
+
_.$prevArrow
|
| 833 |
+
.removeClass('slick-disabled slick-arrow slick-hidden')
|
| 834 |
+
.removeAttr('aria-hidden aria-disabled tabindex')
|
| 835 |
+
.css("display","");
|
| 836 |
+
|
| 837 |
+
if ( _.htmlExpr.test( _.options.prevArrow )) {
|
| 838 |
+
_.$prevArrow.remove();
|
| 839 |
+
}
|
| 840 |
+
}
|
| 841 |
+
|
| 842 |
+
if ( _.$nextArrow && _.$nextArrow.length ) {
|
| 843 |
+
|
| 844 |
+
_.$nextArrow
|
| 845 |
+
.removeClass('slick-disabled slick-arrow slick-hidden')
|
| 846 |
+
.removeAttr('aria-hidden aria-disabled tabindex')
|
| 847 |
+
.css("display","");
|
| 848 |
+
|
| 849 |
+
if ( _.htmlExpr.test( _.options.nextArrow )) {
|
| 850 |
+
_.$nextArrow.remove();
|
| 851 |
+
}
|
| 852 |
+
|
| 853 |
+
}
|
| 854 |
+
|
| 855 |
+
|
| 856 |
+
if (_.$slides) {
|
| 857 |
+
|
| 858 |
+
_.$slides
|
| 859 |
+
.removeClass('slick-slide slick-active slick-center slick-visible slick-current')
|
| 860 |
+
.removeAttr('aria-hidden')
|
| 861 |
+
.removeAttr('data-slick-index')
|
| 862 |
+
.each(function(){
|
| 863 |
+
$(this).attr('style', $(this).data('originalStyling'));
|
| 864 |
+
});
|
| 865 |
+
|
| 866 |
+
_.$slideTrack.children(this.options.slide).detach();
|
| 867 |
+
|
| 868 |
+
_.$slideTrack.detach();
|
| 869 |
+
|
| 870 |
+
_.$list.detach();
|
| 871 |
+
|
| 872 |
+
_.$slider.append(_.$slides);
|
| 873 |
+
}
|
| 874 |
+
|
| 875 |
+
_.cleanUpRows();
|
| 876 |
+
|
| 877 |
+
_.$slider.removeClass('slick-slider');
|
| 878 |
+
_.$slider.removeClass('slick-initialized');
|
| 879 |
+
|
| 880 |
+
_.unslicked = true;
|
| 881 |
+
|
| 882 |
+
if(!refresh) {
|
| 883 |
+
_.$slider.trigger('destroy', [_]);
|
| 884 |
+
}
|
| 885 |
+
|
| 886 |
+
};
|
| 887 |
+
|
| 888 |
+
Slick.prototype.disableTransition = function(slide) {
|
| 889 |
+
|
| 890 |
+
var _ = this,
|
| 891 |
+
transition = {};
|
| 892 |
+
|
| 893 |
+
transition[_.transitionType] = '';
|
| 894 |
+
|
| 895 |
+
if (_.options.fade === false) {
|
| 896 |
+
_.$slideTrack.css(transition);
|
| 897 |
+
} else {
|
| 898 |
+
_.$slides.eq(slide).css(transition);
|
| 899 |
+
}
|
| 900 |
+
|
| 901 |
+
};
|
| 902 |
+
|
| 903 |
+
Slick.prototype.fadeSlide = function(slideIndex, callback) {
|
| 904 |
+
|
| 905 |
+
var _ = this;
|
| 906 |
+
|
| 907 |
+
if (_.cssTransitions === false) {
|
| 908 |
+
|
| 909 |
+
_.$slides.eq(slideIndex).css({
|
| 910 |
+
zIndex: _.options.zIndex
|
| 911 |
+
});
|
| 912 |
+
|
| 913 |
+
_.$slides.eq(slideIndex).animate({
|
| 914 |
+
opacity: 1
|
| 915 |
+
}, _.options.speed, _.options.easing, callback);
|
| 916 |
+
|
| 917 |
+
} else {
|
| 918 |
+
|
| 919 |
+
_.applyTransition(slideIndex);
|
| 920 |
+
|
| 921 |
+
_.$slides.eq(slideIndex).css({
|
| 922 |
+
opacity: 1,
|
| 923 |
+
zIndex: _.options.zIndex
|
| 924 |
+
});
|
| 925 |
+
|
| 926 |
+
if (callback) {
|
| 927 |
+
setTimeout(function() {
|
| 928 |
+
|
| 929 |
+
_.disableTransition(slideIndex);
|
| 930 |
+
|
| 931 |
+
callback.call();
|
| 932 |
+
}, _.options.speed);
|
| 933 |
+
}
|
| 934 |
+
|
| 935 |
+
}
|
| 936 |
+
|
| 937 |
+
};
|
| 938 |
+
|
| 939 |
+
Slick.prototype.fadeSlideOut = function(slideIndex) {
|
| 940 |
+
|
| 941 |
+
var _ = this;
|
| 942 |
+
|
| 943 |
+
if (_.cssTransitions === false) {
|
| 944 |
+
|
| 945 |
+
_.$slides.eq(slideIndex).animate({
|
| 946 |
+
opacity: 0,
|
| 947 |
+
zIndex: _.options.zIndex - 2
|
| 948 |
+
}, _.options.speed, _.options.easing);
|
| 949 |
+
|
| 950 |
+
} else {
|
| 951 |
+
|
| 952 |
+
_.applyTransition(slideIndex);
|
| 953 |
+
|
| 954 |
+
_.$slides.eq(slideIndex).css({
|
| 955 |
+
opacity: 0,
|
| 956 |
+
zIndex: _.options.zIndex - 2
|
| 957 |
+
});
|
| 958 |
+
|
| 959 |
+
}
|
| 960 |
+
|
| 961 |
+
};
|
| 962 |
+
|
| 963 |
+
Slick.prototype.filterSlides = Slick.prototype.slickFilter = function(filter) {
|
| 964 |
+
|
| 965 |
+
var _ = this;
|
| 966 |
+
|
| 967 |
+
if (filter !== null) {
|
| 968 |
+
|
| 969 |
+
_.$slidesCache = _.$slides;
|
| 970 |
+
|
| 971 |
+
_.unload();
|
| 972 |
+
|
| 973 |
+
_.$slideTrack.children(this.options.slide).detach();
|
| 974 |
+
|
| 975 |
+
_.$slidesCache.filter(filter).appendTo(_.$slideTrack);
|
| 976 |
+
|
| 977 |
+
_.reinit();
|
| 978 |
+
|
| 979 |
+
}
|
| 980 |
+
|
| 981 |
+
};
|
| 982 |
+
|
| 983 |
+
Slick.prototype.getCurrent = Slick.prototype.slickCurrentSlide = function() {
|
| 984 |
+
|
| 985 |
+
var _ = this;
|
| 986 |
+
return _.currentSlide;
|
| 987 |
+
|
| 988 |
+
};
|
| 989 |
+
|
| 990 |
+
Slick.prototype.getDotCount = function() {
|
| 991 |
+
|
| 992 |
+
var _ = this;
|
| 993 |
+
|
| 994 |
+
var breakPoint = 0;
|
| 995 |
+
var counter = 0;
|
| 996 |
+
var pagerQty = 0;
|
| 997 |
+
|
| 998 |
+
if (_.options.infinite === true) {
|
| 999 |
+
while (breakPoint < _.slideCount) {
|
| 1000 |
+
++pagerQty;
|
| 1001 |
+
breakPoint = counter + _.options.slidesToScroll;
|
| 1002 |
+
counter += _.options.slidesToScroll <= _.options.slidesToShow ? _.options.slidesToScroll : _.options.slidesToShow;
|
| 1003 |
+
}
|
| 1004 |
+
} else if (_.options.centerMode === true) {
|
| 1005 |
+
pagerQty = _.slideCount;
|
| 1006 |
+
} else {
|
| 1007 |
+
while (breakPoint < _.slideCount) {
|
| 1008 |
+
++pagerQty;
|
| 1009 |
+
breakPoint = counter + _.options.slidesToScroll;
|
| 1010 |
+
counter += _.options.slidesToScroll <= _.options.slidesToShow ? _.options.slidesToScroll : _.options.slidesToShow;
|
| 1011 |
+
}
|
| 1012 |
+
}
|
| 1013 |
+
|
| 1014 |
+
return pagerQty - 1;
|
| 1015 |
+
|
| 1016 |
+
};
|
| 1017 |
+
|
| 1018 |
+
Slick.prototype.getLeft = function(slideIndex) {
|
| 1019 |
+
|
| 1020 |
+
var _ = this,
|
| 1021 |
+
targetLeft,
|
| 1022 |
+
verticalHeight,
|
| 1023 |
+
verticalOffset = 0,
|
| 1024 |
+
targetSlide;
|
| 1025 |
+
|
| 1026 |
+
_.slideOffset = 0;
|
| 1027 |
+
verticalHeight = _.$slides.first().outerHeight(true);
|
| 1028 |
+
|
| 1029 |
+
if (_.options.infinite === true) {
|
| 1030 |
+
if (_.slideCount > _.options.slidesToShow) {
|
| 1031 |
+
_.slideOffset = (_.slideWidth * _.options.slidesToShow) * -1;
|
| 1032 |
+
verticalOffset = (verticalHeight * _.options.slidesToShow) * -1;
|
| 1033 |
+
}
|
| 1034 |
+
if (_.slideCount % _.options.slidesToScroll !== 0) {
|
| 1035 |
+
if (slideIndex + _.options.slidesToScroll > _.slideCount && _.slideCount > _.options.slidesToShow) {
|
| 1036 |
+
if (slideIndex > _.slideCount) {
|
| 1037 |
+
_.slideOffset = ((_.options.slidesToShow - (slideIndex - _.slideCount)) * _.slideWidth) * -1;
|
| 1038 |
+
verticalOffset = ((_.options.slidesToShow - (slideIndex - _.slideCount)) * verticalHeight) * -1;
|
| 1039 |
+
} else {
|
| 1040 |
+
_.slideOffset = ((_.slideCount % _.options.slidesToScroll) * _.slideWidth) * -1;
|
| 1041 |
+
verticalOffset = ((_.slideCount % _.options.slidesToScroll) * verticalHeight) * -1;
|
| 1042 |
+
}
|
| 1043 |
+
}
|
| 1044 |
+
}
|
| 1045 |
+
} else {
|
| 1046 |
+
if (slideIndex + _.options.slidesToShow > _.slideCount) {
|
| 1047 |
+
_.slideOffset = ((slideIndex + _.options.slidesToShow) - _.slideCount) * _.slideWidth;
|
| 1048 |
+
verticalOffset = ((slideIndex + _.options.slidesToShow) - _.slideCount) * verticalHeight;
|
| 1049 |
+
}
|
| 1050 |
+
}
|
| 1051 |
+
|
| 1052 |
+
if (_.slideCount <= _.options.slidesToShow) {
|
| 1053 |
+
_.slideOffset = 0;
|
| 1054 |
+
verticalOffset = 0;
|
| 1055 |
+
}
|
| 1056 |
+
|
| 1057 |
+
if (_.options.centerMode === true && _.options.infinite === true) {
|
| 1058 |
+
_.slideOffset += _.slideWidth * Math.floor(_.options.slidesToShow / 2) - _.slideWidth;
|
| 1059 |
+
} else if (_.options.centerMode === true) {
|
| 1060 |
+
_.slideOffset = 0;
|
| 1061 |
+
_.slideOffset += _.slideWidth * Math.floor(_.options.slidesToShow / 2);
|
| 1062 |
+
}
|
| 1063 |
+
|
| 1064 |
+
if (_.options.vertical === false) {
|
| 1065 |
+
targetLeft = ((slideIndex * _.slideWidth) * -1) + _.slideOffset;
|
| 1066 |
+
} else {
|
| 1067 |
+
targetLeft = ((slideIndex * verticalHeight) * -1) + verticalOffset;
|
| 1068 |
+
}
|
| 1069 |
+
|
| 1070 |
+
if (_.options.variableWidth === true) {
|
| 1071 |
+
|
| 1072 |
+
if (_.slideCount <= _.options.slidesToShow || _.options.infinite === false) {
|
| 1073 |
+
targetSlide = _.$slideTrack.children('.slick-slide').eq(slideIndex);
|
| 1074 |
+
} else {
|
| 1075 |
+
targetSlide = _.$slideTrack.children('.slick-slide').eq(slideIndex + _.options.slidesToShow);
|
| 1076 |
+
}
|
| 1077 |
+
|
| 1078 |
+
if (_.options.rtl === true) {
|
| 1079 |
+
if (targetSlide[0]) {
|
| 1080 |
+
targetLeft = (_.$slideTrack.width() - targetSlide[0].offsetLeft - targetSlide.width()) * -1;
|
| 1081 |
+
} else {
|
| 1082 |
+
targetLeft = 0;
|
| 1083 |
+
}
|
| 1084 |
+
} else {
|
| 1085 |
+
targetLeft = targetSlide[0] ? targetSlide[0].offsetLeft * -1 : 0;
|
| 1086 |
+
}
|
| 1087 |
+
|
| 1088 |
+
if (_.options.centerMode === true) {
|
| 1089 |
+
if (_.slideCount <= _.options.slidesToShow || _.options.infinite === false) {
|
| 1090 |
+
targetSlide = _.$slideTrack.children('.slick-slide').eq(slideIndex);
|
| 1091 |
+
} else {
|
| 1092 |
+
targetSlide = _.$slideTrack.children('.slick-slide').eq(slideIndex + _.options.slidesToShow + 1);
|
| 1093 |
+
}
|
| 1094 |
+
|
| 1095 |
+
if (_.options.rtl === true) {
|
| 1096 |
+
if (targetSlide[0]) {
|
| 1097 |
+
targetLeft = (_.$slideTrack.width() - targetSlide[0].offsetLeft - targetSlide.width()) * -1;
|
| 1098 |
+
} else {
|
| 1099 |
+
targetLeft = 0;
|
| 1100 |
+
}
|
| 1101 |
+
} else {
|
| 1102 |
+
targetLeft = targetSlide[0] ? targetSlide[0].offsetLeft * -1 : 0;
|
| 1103 |
+
}
|
| 1104 |
+
|
| 1105 |
+
targetLeft += (_.$list.width() - targetSlide.outerWidth()) / 2;
|
| 1106 |
+
}
|
| 1107 |
+
}
|
| 1108 |
+
|
| 1109 |
+
return targetLeft;
|
| 1110 |
+
|
| 1111 |
+
};
|
| 1112 |
+
|
| 1113 |
+
Slick.prototype.getOption = Slick.prototype.slickGetOption = function(option) {
|
| 1114 |
+
|
| 1115 |
+
var _ = this;
|
| 1116 |
+
|
| 1117 |
+
return _.options[option];
|
| 1118 |
+
|
| 1119 |
+
};
|
| 1120 |
+
|
| 1121 |
+
Slick.prototype.getNavigableIndexes = function() {
|
| 1122 |
+
|
| 1123 |
+
var _ = this,
|
| 1124 |
+
breakPoint = 0,
|
| 1125 |
+
counter = 0,
|
| 1126 |
+
indexes = [],
|
| 1127 |
+
max;
|
| 1128 |
+
|
| 1129 |
+
if (_.options.infinite === false) {
|
| 1130 |
+
max = _.slideCount;
|
| 1131 |
+
} else {
|
| 1132 |
+
breakPoint = _.options.slidesToScroll * -1;
|
| 1133 |
+
counter = _.options.slidesToScroll * -1;
|
| 1134 |
+
max = _.slideCount * 2;
|
| 1135 |
+
}
|
| 1136 |
+
|
| 1137 |
+
while (breakPoint < max) {
|
| 1138 |
+
indexes.push(breakPoint);
|
| 1139 |
+
breakPoint = counter + _.options.slidesToScroll;
|
| 1140 |
+
counter += _.options.slidesToScroll <= _.options.slidesToShow ? _.options.slidesToScroll : _.options.slidesToShow;
|
| 1141 |
+
}
|
| 1142 |
+
|
| 1143 |
+
return indexes;
|
| 1144 |
+
|
| 1145 |
+
};
|
| 1146 |
+
|
| 1147 |
+
Slick.prototype.getSlick = function() {
|
| 1148 |
+
|
| 1149 |
+
return this;
|
| 1150 |
+
|
| 1151 |
+
};
|
| 1152 |
+
|
| 1153 |
+
Slick.prototype.getSlideCount = function() {
|
| 1154 |
+
|
| 1155 |
+
var _ = this,
|
| 1156 |
+
slidesTraversed, swipedSlide, centerOffset;
|
| 1157 |
+
|
| 1158 |
+
centerOffset = _.options.centerMode === true ? _.slideWidth * Math.floor(_.options.slidesToShow / 2) : 0;
|
| 1159 |
+
|
| 1160 |
+
if (_.options.swipeToSlide === true) {
|
| 1161 |
+
_.$slideTrack.find('.slick-slide').each(function(index, slide) {
|
| 1162 |
+
if (slide.offsetLeft - centerOffset + ($(slide).outerWidth() / 2) > (_.swipeLeft * -1)) {
|
| 1163 |
+
swipedSlide = slide;
|
| 1164 |
+
return false;
|
| 1165 |
+
}
|
| 1166 |
+
});
|
| 1167 |
+
|
| 1168 |
+
slidesTraversed = Math.abs($(swipedSlide).attr('data-slick-index') - _.currentSlide) || 1;
|
| 1169 |
+
|
| 1170 |
+
return slidesTraversed;
|
| 1171 |
+
|
| 1172 |
+
} else {
|
| 1173 |
+
return _.options.slidesToScroll;
|
| 1174 |
+
}
|
| 1175 |
+
|
| 1176 |
+
};
|
| 1177 |
+
|
| 1178 |
+
Slick.prototype.goTo = Slick.prototype.slickGoTo = function(slide, dontAnimate) {
|
| 1179 |
+
|
| 1180 |
+
var _ = this;
|
| 1181 |
+
|
| 1182 |
+
_.changeSlide({
|
| 1183 |
+
data: {
|
| 1184 |
+
message: 'index',
|
| 1185 |
+
index: parseInt(slide)
|
| 1186 |
+
}
|
| 1187 |
+
}, dontAnimate);
|
| 1188 |
+
|
| 1189 |
+
};
|
| 1190 |
+
|
| 1191 |
+
Slick.prototype.init = function(creation) {
|
| 1192 |
+
|
| 1193 |
+
var _ = this;
|
| 1194 |
+
|
| 1195 |
+
if (!$(_.$slider).hasClass('slick-initialized')) {
|
| 1196 |
+
|
| 1197 |
+
$(_.$slider).addClass('slick-initialized');
|
| 1198 |
+
|
| 1199 |
+
_.buildRows();
|
| 1200 |
+
_.buildOut();
|
| 1201 |
+
_.setProps();
|
| 1202 |
+
_.startLoad();
|
| 1203 |
+
_.loadSlider();
|
| 1204 |
+
_.initializeEvents();
|
| 1205 |
+
_.updateArrows();
|
| 1206 |
+
_.updateDots();
|
| 1207 |
+
|
| 1208 |
+
}
|
| 1209 |
+
|
| 1210 |
+
if (creation) {
|
| 1211 |
+
_.$slider.trigger('init', [_]);
|
| 1212 |
+
}
|
| 1213 |
+
|
| 1214 |
+
if (_.options.accessibility === true) {
|
| 1215 |
+
_.initADA();
|
| 1216 |
+
}
|
| 1217 |
+
|
| 1218 |
+
};
|
| 1219 |
+
|
| 1220 |
+
Slick.prototype.initArrowEvents = function() {
|
| 1221 |
+
|
| 1222 |
+
var _ = this;
|
| 1223 |
+
|
| 1224 |
+
if (_.options.arrows === true && _.slideCount > _.options.slidesToShow) {
|
| 1225 |
+
_.$prevArrow.on('click.slick', {
|
| 1226 |
+
message: 'previous'
|
| 1227 |
+
}, _.changeSlide);
|
| 1228 |
+
_.$nextArrow.on('click.slick', {
|
| 1229 |
+
message: 'next'
|
| 1230 |
+
}, _.changeSlide);
|
| 1231 |
+
}
|
| 1232 |
+
|
| 1233 |
+
};
|
| 1234 |
+
|
| 1235 |
+
Slick.prototype.initDotEvents = function() {
|
| 1236 |
+
|
| 1237 |
+
var _ = this;
|
| 1238 |
+
|
| 1239 |
+
if (_.options.dots === true && _.slideCount > _.options.slidesToShow) {
|
| 1240 |
+
$('li', _.$dots).on('click.slick', {
|
| 1241 |
+
message: 'index'
|
| 1242 |
+
}, _.changeSlide);
|
| 1243 |
+
}
|
| 1244 |
+
|
| 1245 |
+
if (_.options.dots === true && _.options.pauseOnDotsHover === true && _.options.autoplay === true) {
|
| 1246 |
+
$('li', _.$dots)
|
| 1247 |
+
.on('mouseenter.slick', $.proxy(_.setPaused, _, true))
|
| 1248 |
+
.on('mouseleave.slick', $.proxy(_.setPaused, _, false));
|
| 1249 |
+
}
|
| 1250 |
+
|
| 1251 |
+
};
|
| 1252 |
+
|
| 1253 |
+
Slick.prototype.initializeEvents = function() {
|
| 1254 |
+
|
| 1255 |
+
var _ = this;
|
| 1256 |
+
|
| 1257 |
+
_.initArrowEvents();
|
| 1258 |
+
|
| 1259 |
+
_.initDotEvents();
|
| 1260 |
+
|
| 1261 |
+
_.$list.on('touchstart.slick mousedown.slick', {
|
| 1262 |
+
action: 'start'
|
| 1263 |
+
}, _.swipeHandler);
|
| 1264 |
+
_.$list.on('touchmove.slick mousemove.slick', {
|
| 1265 |
+
action: 'move'
|
| 1266 |
+
}, _.swipeHandler);
|
| 1267 |
+
_.$list.on('touchend.slick mouseup.slick', {
|
| 1268 |
+
action: 'end'
|
| 1269 |
+
}, _.swipeHandler);
|
| 1270 |
+
_.$list.on('touchcancel.slick mouseleave.slick', {
|
| 1271 |
+
action: 'end'
|
| 1272 |
+
}, _.swipeHandler);
|
| 1273 |
+
|
| 1274 |
+
_.$list.on('click.slick', _.clickHandler);
|
| 1275 |
+
|
| 1276 |
+
$(document).on(_.visibilityChange, $.proxy(_.visibility, _));
|
| 1277 |
+
|
| 1278 |
+
_.$list.on('mouseenter.slick', $.proxy(_.setPaused, _, true));
|
| 1279 |
+
_.$list.on('mouseleave.slick', $.proxy(_.setPaused, _, false));
|
| 1280 |
+
|
| 1281 |
+
if (_.options.accessibility === true) {
|
| 1282 |
+
_.$list.on('keydown.slick', _.keyHandler);
|
| 1283 |
+
}
|
| 1284 |
+
|
| 1285 |
+
if (_.options.focusOnSelect === true) {
|
| 1286 |
+
$(_.$slideTrack).children().on('click.slick', _.selectHandler);
|
| 1287 |
+
}
|
| 1288 |
+
|
| 1289 |
+
$(window).on('orientationchange.slick.slick-' + _.instanceUid, $.proxy(_.orientationChange, _));
|
| 1290 |
+
|
| 1291 |
+
$(window).on('resize.slick.slick-' + _.instanceUid, $.proxy(_.resize, _));
|
| 1292 |
+
|
| 1293 |
+
$('[draggable!=true]', _.$slideTrack).on('dragstart', _.preventDefault);
|
| 1294 |
+
|
| 1295 |
+
$(window).on('load.slick.slick-' + _.instanceUid, _.setPosition);
|
| 1296 |
+
$(document).on('ready.slick.slick-' + _.instanceUid, _.setPosition);
|
| 1297 |
+
|
| 1298 |
+
};
|
| 1299 |
+
|
| 1300 |
+
Slick.prototype.initUI = function() {
|
| 1301 |
+
|
| 1302 |
+
var _ = this;
|
| 1303 |
+
|
| 1304 |
+
if (_.options.arrows === true && _.slideCount > _.options.slidesToShow) {
|
| 1305 |
+
|
| 1306 |
+
_.$prevArrow.show();
|
| 1307 |
+
_.$nextArrow.show();
|
| 1308 |
+
|
| 1309 |
+
}
|
| 1310 |
+
|
| 1311 |
+
if (_.options.dots === true && _.slideCount > _.options.slidesToShow) {
|
| 1312 |
+
|
| 1313 |
+
_.$dots.show();
|
| 1314 |
+
|
| 1315 |
+
}
|
| 1316 |
+
|
| 1317 |
+
if (_.options.autoplay === true) {
|
| 1318 |
+
|
| 1319 |
+
_.autoPlay();
|
| 1320 |
+
|
| 1321 |
+
}
|
| 1322 |
+
|
| 1323 |
+
};
|
| 1324 |
+
|
| 1325 |
+
Slick.prototype.keyHandler = function(event) {
|
| 1326 |
+
|
| 1327 |
+
var _ = this;
|
| 1328 |
+
//Dont slide if the cursor is inside the form fields and arrow keys are pressed
|
| 1329 |
+
if(!event.target.tagName.match('TEXTAREA|INPUT|SELECT')) {
|
| 1330 |
+
if (event.keyCode === 37 && _.options.accessibility === true) {
|
| 1331 |
+
_.changeSlide({
|
| 1332 |
+
data: {
|
| 1333 |
+
message: 'previous'
|
| 1334 |
+
}
|
| 1335 |
+
});
|
| 1336 |
+
} else if (event.keyCode === 39 && _.options.accessibility === true) {
|
| 1337 |
+
_.changeSlide({
|
| 1338 |
+
data: {
|
| 1339 |
+
message: 'next'
|
| 1340 |
+
}
|
| 1341 |
+
});
|
| 1342 |
+
}
|
| 1343 |
+
}
|
| 1344 |
+
|
| 1345 |
+
};
|
| 1346 |
+
|
| 1347 |
+
Slick.prototype.lazyLoad = function() {
|
| 1348 |
+
|
| 1349 |
+
var _ = this,
|
| 1350 |
+
loadRange, cloneRange, rangeStart, rangeEnd;
|
| 1351 |
+
|
| 1352 |
+
function loadImages(imagesScope) {
|
| 1353 |
+
$('img[data-lazy]', imagesScope).each(function() {
|
| 1354 |
+
|
| 1355 |
+
var image = $(this),
|
| 1356 |
+
imageSource = $(this).attr('data-lazy'),
|
| 1357 |
+
imageToLoad = document.createElement('img');
|
| 1358 |
+
|
| 1359 |
+
imageToLoad.onload = function() {
|
| 1360 |
+
image
|
| 1361 |
+
.animate({ opacity: 0 }, 100, function() {
|
| 1362 |
+
image
|
| 1363 |
+
.attr('src', imageSource)
|
| 1364 |
+
.animate({ opacity: 1 }, 200, function() {
|
| 1365 |
+
image
|
| 1366 |
+
.removeAttr('data-lazy')
|
| 1367 |
+
.removeClass('slick-loading');
|
| 1368 |
+
});
|
| 1369 |
+
});
|
| 1370 |
+
};
|
| 1371 |
+
|
| 1372 |
+
imageToLoad.src = imageSource;
|
| 1373 |
+
|
| 1374 |
+
});
|
| 1375 |
+
}
|
| 1376 |
+
|
| 1377 |
+
if (_.options.centerMode === true) {
|
| 1378 |
+
if (_.options.infinite === true) {
|
| 1379 |
+
rangeStart = _.currentSlide + (_.options.slidesToShow / 2 + 1);
|
| 1380 |
+
rangeEnd = rangeStart + _.options.slidesToShow + 2;
|
| 1381 |
+
} else {
|
| 1382 |
+
rangeStart = Math.max(0, _.currentSlide - (_.options.slidesToShow / 2 + 1));
|
| 1383 |
+
rangeEnd = 2 + (_.options.slidesToShow / 2 + 1) + _.currentSlide;
|
| 1384 |
+
}
|
| 1385 |
+
} else {
|
| 1386 |
+
rangeStart = _.options.infinite ? _.options.slidesToShow + _.currentSlide : _.currentSlide;
|
| 1387 |
+
rangeEnd = rangeStart + _.options.slidesToShow;
|
| 1388 |
+
if (_.options.fade === true) {
|
| 1389 |
+
if (rangeStart > 0) rangeStart--;
|
| 1390 |
+
if (rangeEnd <= _.slideCount) rangeEnd++;
|
| 1391 |
+
}
|
| 1392 |
+
}
|
| 1393 |
+
|
| 1394 |
+
loadRange = _.$slider.find('.slick-slide').slice(rangeStart, rangeEnd);
|
| 1395 |
+
loadImages(loadRange);
|
| 1396 |
+
|
| 1397 |
+
if (_.slideCount <= _.options.slidesToShow) {
|
| 1398 |
+
cloneRange = _.$slider.find('.slick-slide');
|
| 1399 |
+
loadImages(cloneRange);
|
| 1400 |
+
} else
|
| 1401 |
+
if (_.currentSlide >= _.slideCount - _.options.slidesToShow) {
|
| 1402 |
+
cloneRange = _.$slider.find('.slick-cloned').slice(0, _.options.slidesToShow);
|
| 1403 |
+
loadImages(cloneRange);
|
| 1404 |
+
} else if (_.currentSlide === 0) {
|
| 1405 |
+
cloneRange = _.$slider.find('.slick-cloned').slice(_.options.slidesToShow * -1);
|
| 1406 |
+
loadImages(cloneRange);
|
| 1407 |
+
}
|
| 1408 |
+
|
| 1409 |
+
};
|
| 1410 |
+
|
| 1411 |
+
Slick.prototype.loadSlider = function() {
|
| 1412 |
+
|
| 1413 |
+
var _ = this;
|
| 1414 |
+
|
| 1415 |
+
_.setPosition();
|
| 1416 |
+
|
| 1417 |
+
_.$slideTrack.css({
|
| 1418 |
+
opacity: 1
|
| 1419 |
+
});
|
| 1420 |
+
|
| 1421 |
+
_.$slider.removeClass('slick-loading');
|
| 1422 |
+
|
| 1423 |
+
_.initUI();
|
| 1424 |
+
|
| 1425 |
+
if (_.options.lazyLoad === 'progressive') {
|
| 1426 |
+
_.progressiveLazyLoad();
|
| 1427 |
+
}
|
| 1428 |
+
|
| 1429 |
+
};
|
| 1430 |
+
|
| 1431 |
+
Slick.prototype.next = Slick.prototype.slickNext = function() {
|
| 1432 |
+
|
| 1433 |
+
var _ = this;
|
| 1434 |
+
|
| 1435 |
+
_.changeSlide({
|
| 1436 |
+
data: {
|
| 1437 |
+
message: 'next'
|
| 1438 |
+
}
|
| 1439 |
+
});
|
| 1440 |
+
|
| 1441 |
+
};
|
| 1442 |
+
|
| 1443 |
+
Slick.prototype.orientationChange = function() {
|
| 1444 |
+
|
| 1445 |
+
var _ = this;
|
| 1446 |
+
|
| 1447 |
+
_.checkResponsive();
|
| 1448 |
+
_.setPosition();
|
| 1449 |
+
|
| 1450 |
+
};
|
| 1451 |
+
|
| 1452 |
+
Slick.prototype.pause = Slick.prototype.slickPause = function() {
|
| 1453 |
+
|
| 1454 |
+
var _ = this;
|
| 1455 |
+
|
| 1456 |
+
_.autoPlayClear();
|
| 1457 |
+
_.paused = true;
|
| 1458 |
+
|
| 1459 |
+
};
|
| 1460 |
+
|
| 1461 |
+
Slick.prototype.play = Slick.prototype.slickPlay = function() {
|
| 1462 |
+
|
| 1463 |
+
var _ = this;
|
| 1464 |
+
|
| 1465 |
+
_.paused = false;
|
| 1466 |
+
_.autoPlay();
|
| 1467 |
+
|
| 1468 |
+
};
|
| 1469 |
+
|
| 1470 |
+
Slick.prototype.postSlide = function(index) {
|
| 1471 |
+
|
| 1472 |
+
var _ = this;
|
| 1473 |
+
|
| 1474 |
+
_.$slider.trigger('afterChange', [_, index]);
|
| 1475 |
+
|
| 1476 |
+
_.animating = false;
|
| 1477 |
+
|
| 1478 |
+
_.setPosition();
|
| 1479 |
+
|
| 1480 |
+
_.swipeLeft = null;
|
| 1481 |
+
|
| 1482 |
+
if (_.options.autoplay === true && _.paused === false) {
|
| 1483 |
+
_.autoPlay();
|
| 1484 |
+
}
|
| 1485 |
+
if (_.options.accessibility === true) {
|
| 1486 |
+
_.initADA();
|
| 1487 |
+
}
|
| 1488 |
+
|
| 1489 |
+
};
|
| 1490 |
+
|
| 1491 |
+
Slick.prototype.prev = Slick.prototype.slickPrev = function() {
|
| 1492 |
+
|
| 1493 |
+
var _ = this;
|
| 1494 |
+
|
| 1495 |
+
_.changeSlide({
|
| 1496 |
+
data: {
|
| 1497 |
+
message: 'previous'
|
| 1498 |
+
}
|
| 1499 |
+
});
|
| 1500 |
+
|
| 1501 |
+
};
|
| 1502 |
+
|
| 1503 |
+
Slick.prototype.preventDefault = function(event) {
|
| 1504 |
+
event.preventDefault();
|
| 1505 |
+
};
|
| 1506 |
+
|
| 1507 |
+
Slick.prototype.progressiveLazyLoad = function() {
|
| 1508 |
+
|
| 1509 |
+
var _ = this,
|
| 1510 |
+
imgCount, targetImage;
|
| 1511 |
+
|
| 1512 |
+
imgCount = $('img[data-lazy]', _.$slider).length;
|
| 1513 |
+
|
| 1514 |
+
if (imgCount > 0) {
|
| 1515 |
+
targetImage = $('img[data-lazy]', _.$slider).first();
|
| 1516 |
+
targetImage.attr('src', null);
|
| 1517 |
+
targetImage.attr('src', targetImage.attr('data-lazy')).removeClass('slick-loading').load(function() {
|
| 1518 |
+
targetImage.removeAttr('data-lazy');
|
| 1519 |
+
_.progressiveLazyLoad();
|
| 1520 |
+
|
| 1521 |
+
if (_.options.adaptiveHeight === true) {
|
| 1522 |
+
_.setPosition();
|
| 1523 |
+
}
|
| 1524 |
+
})
|
| 1525 |
+
.error(function() {
|
| 1526 |
+
targetImage.removeAttr('data-lazy');
|
| 1527 |
+
_.progressiveLazyLoad();
|
| 1528 |
+
});
|
| 1529 |
+
}
|
| 1530 |
+
|
| 1531 |
+
};
|
| 1532 |
+
|
| 1533 |
+
Slick.prototype.refresh = function( initializing ) {
|
| 1534 |
+
|
| 1535 |
+
var _ = this, currentSlide, firstVisible;
|
| 1536 |
+
|
| 1537 |
+
firstVisible = _.slideCount - _.options.slidesToShow;
|
| 1538 |
+
|
| 1539 |
+
// check that the new breakpoint can actually accept the
|
| 1540 |
+
// "current slide" as the current slide, otherwise we need
|
| 1541 |
+
// to set it to the closest possible value.
|
| 1542 |
+
if ( !_.options.infinite ) {
|
| 1543 |
+
if ( _.slideCount <= _.options.slidesToShow ) {
|
| 1544 |
+
_.currentSlide = 0;
|
| 1545 |
+
} else if ( _.currentSlide > firstVisible ) {
|
| 1546 |
+
_.currentSlide = firstVisible;
|
| 1547 |
+
}
|
| 1548 |
+
}
|
| 1549 |
+
|
| 1550 |
+
currentSlide = _.currentSlide;
|
| 1551 |
+
|
| 1552 |
+
_.destroy(true);
|
| 1553 |
+
|
| 1554 |
+
$.extend(_, _.initials, { currentSlide: currentSlide });
|
| 1555 |
+
|
| 1556 |
+
_.init();
|
| 1557 |
+
|
| 1558 |
+
if( !initializing ) {
|
| 1559 |
+
|
| 1560 |
+
_.changeSlide({
|
| 1561 |
+
data: {
|
| 1562 |
+
message: 'index',
|
| 1563 |
+
index: currentSlide
|
| 1564 |
+
}
|
| 1565 |
+
}, false);
|
| 1566 |
+
|
| 1567 |
+
}
|
| 1568 |
+
|
| 1569 |
+
};
|
| 1570 |
+
|
| 1571 |
+
Slick.prototype.registerBreakpoints = function() {
|
| 1572 |
+
|
| 1573 |
+
var _ = this, breakpoint, currentBreakpoint, l,
|
| 1574 |
+
responsiveSettings = _.options.responsive || null;
|
| 1575 |
+
|
| 1576 |
+
if ( $.type(responsiveSettings) === "array" && responsiveSettings.length ) {
|
| 1577 |
+
|
| 1578 |
+
_.respondTo = _.options.respondTo || 'window';
|
| 1579 |
+
|
| 1580 |
+
for ( breakpoint in responsiveSettings ) {
|
| 1581 |
+
|
| 1582 |
+
l = _.breakpoints.length-1;
|
| 1583 |
+
currentBreakpoint = responsiveSettings[breakpoint].breakpoint;
|
| 1584 |
+
|
| 1585 |
+
if (responsiveSettings.hasOwnProperty(breakpoint)) {
|
| 1586 |
+
|
| 1587 |
+
// loop through the breakpoints and cut out any existing
|
| 1588 |
+
// ones with the same breakpoint number, we don't want dupes.
|
| 1589 |
+
while( l >= 0 ) {
|
| 1590 |
+
if( _.breakpoints[l] && _.breakpoints[l] === currentBreakpoint ) {
|
| 1591 |
+
_.breakpoints.splice(l,1);
|
| 1592 |
+
}
|
| 1593 |
+
l--;
|
| 1594 |
+
}
|
| 1595 |
+
|
| 1596 |
+
_.breakpoints.push(currentBreakpoint);
|
| 1597 |
+
_.breakpointSettings[currentBreakpoint] = responsiveSettings[breakpoint].settings;
|
| 1598 |
+
|
| 1599 |
+
}
|
| 1600 |
+
|
| 1601 |
+
}
|
| 1602 |
+
|
| 1603 |
+
_.breakpoints.sort(function(a, b) {
|
| 1604 |
+
return ( _.options.mobileFirst ) ? a-b : b-a;
|
| 1605 |
+
});
|
| 1606 |
+
|
| 1607 |
+
}
|
| 1608 |
+
|
| 1609 |
+
};
|
| 1610 |
+
|
| 1611 |
+
Slick.prototype.reinit = function() {
|
| 1612 |
+
|
| 1613 |
+
var _ = this;
|
| 1614 |
+
|
| 1615 |
+
_.$slides =
|
| 1616 |
+
_.$slideTrack
|
| 1617 |
+
.children(_.options.slide)
|
| 1618 |
+
.addClass('slick-slide');
|
| 1619 |
+
|
| 1620 |
+
_.slideCount = _.$slides.length;
|
| 1621 |
+
|
| 1622 |
+
if (_.currentSlide >= _.slideCount && _.currentSlide !== 0) {
|
| 1623 |
+
_.currentSlide = _.currentSlide - _.options.slidesToScroll;
|
| 1624 |
+
}
|
| 1625 |
+
|
| 1626 |
+
if (_.slideCount <= _.options.slidesToShow) {
|
| 1627 |
+
_.currentSlide = 0;
|
| 1628 |
+
}
|
| 1629 |
+
|
| 1630 |
+
_.registerBreakpoints();
|
| 1631 |
+
|
| 1632 |
+
_.setProps();
|
| 1633 |
+
_.setupInfinite();
|
| 1634 |
+
_.buildArrows();
|
| 1635 |
+
_.updateArrows();
|
| 1636 |
+
_.initArrowEvents();
|
| 1637 |
+
_.buildDots();
|
| 1638 |
+
_.updateDots();
|
| 1639 |
+
_.initDotEvents();
|
| 1640 |
+
|
| 1641 |
+
_.checkResponsive(false, true);
|
| 1642 |
+
|
| 1643 |
+
if (_.options.focusOnSelect === true) {
|
| 1644 |
+
$(_.$slideTrack).children().on('click.slick', _.selectHandler);
|
| 1645 |
+
}
|
| 1646 |
+
|
| 1647 |
+
_.setSlideClasses(0);
|
| 1648 |
+
|
| 1649 |
+
_.setPosition();
|
| 1650 |
+
|
| 1651 |
+
_.$slider.trigger('reInit', [_]);
|
| 1652 |
+
|
| 1653 |
+
if (_.options.autoplay === true) {
|
| 1654 |
+
_.focusHandler();
|
| 1655 |
+
}
|
| 1656 |
+
|
| 1657 |
+
};
|
| 1658 |
+
|
| 1659 |
+
Slick.prototype.resize = function() {
|
| 1660 |
+
|
| 1661 |
+
var _ = this;
|
| 1662 |
+
|
| 1663 |
+
if ($(window).width() !== _.windowWidth) {
|
| 1664 |
+
clearTimeout(_.windowDelay);
|
| 1665 |
+
_.windowDelay = window.setTimeout(function() {
|
| 1666 |
+
_.windowWidth = $(window).width();
|
| 1667 |
+
_.checkResponsive();
|
| 1668 |
+
if( !_.unslicked ) { _.setPosition(); }
|
| 1669 |
+
}, 50);
|
| 1670 |
+
}
|
| 1671 |
+
};
|
| 1672 |
+
|
| 1673 |
+
Slick.prototype.removeSlide = Slick.prototype.slickRemove = function(index, removeBefore, removeAll) {
|
| 1674 |
+
|
| 1675 |
+
var _ = this;
|
| 1676 |
+
|
| 1677 |
+
if (typeof(index) === 'boolean') {
|
| 1678 |
+
removeBefore = index;
|
| 1679 |
+
index = removeBefore === true ? 0 : _.slideCount - 1;
|
| 1680 |
+
} else {
|
| 1681 |
+
index = removeBefore === true ? --index : index;
|
| 1682 |
+
}
|
| 1683 |
+
|
| 1684 |
+
if (_.slideCount < 1 || index < 0 || index > _.slideCount - 1) {
|
| 1685 |
+
return false;
|
| 1686 |
+
}
|
| 1687 |
+
|
| 1688 |
+
_.unload();
|
| 1689 |
+
|
| 1690 |
+
if (removeAll === true) {
|
| 1691 |
+
_.$slideTrack.children().remove();
|
| 1692 |
+
} else {
|
| 1693 |
+
_.$slideTrack.children(this.options.slide).eq(index).remove();
|
| 1694 |
+
}
|
| 1695 |
+
|
| 1696 |
+
_.$slides = _.$slideTrack.children(this.options.slide);
|
| 1697 |
+
|
| 1698 |
+
_.$slideTrack.children(this.options.slide).detach();
|
| 1699 |
+
|
| 1700 |
+
_.$slideTrack.append(_.$slides);
|
| 1701 |
+
|
| 1702 |
+
_.$slidesCache = _.$slides;
|
| 1703 |
+
|
| 1704 |
+
_.reinit();
|
| 1705 |
+
|
| 1706 |
+
};
|
| 1707 |
+
|
| 1708 |
+
Slick.prototype.setCSS = function(position) {
|
| 1709 |
+
|
| 1710 |
+
var _ = this,
|
| 1711 |
+
positionProps = {},
|
| 1712 |
+
x, y;
|
| 1713 |
+
|
| 1714 |
+
if (_.options.rtl === true) {
|
| 1715 |
+
position = -position;
|
| 1716 |
+
}
|
| 1717 |
+
x = _.positionProp == 'left' ? Math.ceil(position) + 'px' : '0px';
|
| 1718 |
+
y = _.positionProp == 'top' ? Math.ceil(position) + 'px' : '0px';
|
| 1719 |
+
|
| 1720 |
+
positionProps[_.positionProp] = position;
|
| 1721 |
+
|
| 1722 |
+
if (_.transformsEnabled === false) {
|
| 1723 |
+
_.$slideTrack.css(positionProps);
|
| 1724 |
+
} else {
|
| 1725 |
+
positionProps = {};
|
| 1726 |
+
if (_.cssTransitions === false) {
|
| 1727 |
+
positionProps[_.animType] = 'translate(' + x + ', ' + y + ')';
|
| 1728 |
+
_.$slideTrack.css(positionProps);
|
| 1729 |
+
} else {
|
| 1730 |
+
positionProps[_.animType] = 'translate3d(' + x + ', ' + y + ', 0px)';
|
| 1731 |
+
_.$slideTrack.css(positionProps);
|
| 1732 |
+
}
|
| 1733 |
+
}
|
| 1734 |
+
|
| 1735 |
+
};
|
| 1736 |
+
|
| 1737 |
+
Slick.prototype.setDimensions = function() {
|
| 1738 |
+
|
| 1739 |
+
var _ = this;
|
| 1740 |
+
|
| 1741 |
+
if (_.options.vertical === false) {
|
| 1742 |
+
if (_.options.centerMode === true) {
|
| 1743 |
+
_.$list.css({
|
| 1744 |
+
padding: ('0px ' + _.options.centerPadding)
|
| 1745 |
+
});
|
| 1746 |
+
}
|
| 1747 |
+
} else {
|
| 1748 |
+
_.$list.height(_.$slides.first().outerHeight(true) * _.options.slidesToShow);
|
| 1749 |
+
if (_.options.centerMode === true) {
|
| 1750 |
+
_.$list.css({
|
| 1751 |
+
padding: (_.options.centerPadding + ' 0px')
|
| 1752 |
+
});
|
| 1753 |
+
}
|
| 1754 |
+
}
|
| 1755 |
+
|
| 1756 |
+
_.listWidth = _.$list.width();
|
| 1757 |
+
_.listHeight = _.$list.height();
|
| 1758 |
+
|
| 1759 |
+
|
| 1760 |
+
if (_.options.vertical === false && _.options.variableWidth === false) {
|
| 1761 |
+
_.slideWidth = Math.ceil(_.listWidth / _.options.slidesToShow);
|
| 1762 |
+
_.$slideTrack.width(Math.ceil((_.slideWidth * _.$slideTrack.children('.slick-slide').length)));
|
| 1763 |
+
|
| 1764 |
+
} else if (_.options.variableWidth === true) {
|
| 1765 |
+
_.$slideTrack.width(5000 * _.slideCount);
|
| 1766 |
+
} else {
|
| 1767 |
+
_.slideWidth = Math.ceil(_.listWidth);
|
| 1768 |
+
_.$slideTrack.height(Math.ceil((_.$slides.first().outerHeight(true) * _.$slideTrack.children('.slick-slide').length)));
|
| 1769 |
+
}
|
| 1770 |
+
|
| 1771 |
+
var offset = _.$slides.first().outerWidth(true) - _.$slides.first().width();
|
| 1772 |
+
if (_.options.variableWidth === false) _.$slideTrack.children('.slick-slide').width(_.slideWidth - offset);
|
| 1773 |
+
|
| 1774 |
+
};
|
| 1775 |
+
|
| 1776 |
+
Slick.prototype.setFade = function() {
|
| 1777 |
+
|
| 1778 |
+
var _ = this,
|
| 1779 |
+
targetLeft;
|
| 1780 |
+
|
| 1781 |
+
_.$slides.each(function(index, element) {
|
| 1782 |
+
targetLeft = (_.slideWidth * index) * -1;
|
| 1783 |
+
if (_.options.rtl === true) {
|
| 1784 |
+
$(element).css({
|
| 1785 |
+
position: 'relative',
|
| 1786 |
+
right: targetLeft,
|
| 1787 |
+
top: 0,
|
| 1788 |
+
zIndex: _.options.zIndex - 2,
|
| 1789 |
+
opacity: 0
|
| 1790 |
+
});
|
| 1791 |
+
} else {
|
| 1792 |
+
$(element).css({
|
| 1793 |
+
position: 'relative',
|
| 1794 |
+
left: targetLeft,
|
| 1795 |
+
top: 0,
|
| 1796 |
+
zIndex: _.options.zIndex - 2,
|
| 1797 |
+
opacity: 0
|
| 1798 |
+
});
|
| 1799 |
+
}
|
| 1800 |
+
});
|
| 1801 |
+
|
| 1802 |
+
_.$slides.eq(_.currentSlide).css({
|
| 1803 |
+
zIndex: _.options.zIndex - 1,
|
| 1804 |
+
opacity: 1
|
| 1805 |
+
});
|
| 1806 |
+
|
| 1807 |
+
};
|
| 1808 |
+
|
| 1809 |
+
Slick.prototype.setHeight = function() {
|
| 1810 |
+
|
| 1811 |
+
var _ = this;
|
| 1812 |
+
|
| 1813 |
+
if (_.options.slidesToShow === 1 && _.options.adaptiveHeight === true && _.options.vertical === false) {
|
| 1814 |
+
var targetHeight = _.$slides.eq(_.currentSlide).outerHeight(true);
|
| 1815 |
+
_.$list.css('height', targetHeight);
|
| 1816 |
+
}
|
| 1817 |
+
|
| 1818 |
+
};
|
| 1819 |
+
|
| 1820 |
+
Slick.prototype.setOption = Slick.prototype.slickSetOption = function(option, value, refresh) {
|
| 1821 |
+
|
| 1822 |
+
var _ = this, l, item;
|
| 1823 |
+
|
| 1824 |
+
if( option === "responsive" && $.type(value) === "array" ) {
|
| 1825 |
+
for ( item in value ) {
|
| 1826 |
+
if( $.type( _.options.responsive ) !== "array" ) {
|
| 1827 |
+
_.options.responsive = [ value[item] ];
|
| 1828 |
+
} else {
|
| 1829 |
+
l = _.options.responsive.length-1;
|
| 1830 |
+
// loop through the responsive object and splice out duplicates.
|
| 1831 |
+
while( l >= 0 ) {
|
| 1832 |
+
if( _.options.responsive[l].breakpoint === value[item].breakpoint ) {
|
| 1833 |
+
_.options.responsive.splice(l,1);
|
| 1834 |
+
}
|
| 1835 |
+
l--;
|
| 1836 |
+
}
|
| 1837 |
+
_.options.responsive.push( value[item] );
|
| 1838 |
+
}
|
| 1839 |
+
}
|
| 1840 |
+
} else {
|
| 1841 |
+
_.options[option] = value;
|
| 1842 |
+
}
|
| 1843 |
+
|
| 1844 |
+
if (refresh === true) {
|
| 1845 |
+
_.unload();
|
| 1846 |
+
_.reinit();
|
| 1847 |
+
}
|
| 1848 |
+
|
| 1849 |
+
};
|
| 1850 |
+
|
| 1851 |
+
Slick.prototype.setPosition = function() {
|
| 1852 |
+
|
| 1853 |
+
var _ = this;
|
| 1854 |
+
|
| 1855 |
+
_.setDimensions();
|
| 1856 |
+
|
| 1857 |
+
_.setHeight();
|
| 1858 |
+
|
| 1859 |
+
if (_.options.fade === false) {
|
| 1860 |
+
_.setCSS(_.getLeft(_.currentSlide));
|
| 1861 |
+
} else {
|
| 1862 |
+
_.setFade();
|
| 1863 |
+
}
|
| 1864 |
+
|
| 1865 |
+
_.$slider.trigger('setPosition', [_]);
|
| 1866 |
+
|
| 1867 |
+
};
|
| 1868 |
+
|
| 1869 |
+
Slick.prototype.setProps = function() {
|
| 1870 |
+
|
| 1871 |
+
var _ = this,
|
| 1872 |
+
bodyStyle = document.body.style;
|
| 1873 |
+
|
| 1874 |
+
_.positionProp = _.options.vertical === true ? 'top' : 'left';
|
| 1875 |
+
|
| 1876 |
+
if (_.positionProp === 'top') {
|
| 1877 |
+
_.$slider.addClass('slick-vertical');
|
| 1878 |
+
} else {
|
| 1879 |
+
_.$slider.removeClass('slick-vertical');
|
| 1880 |
+
}
|
| 1881 |
+
|
| 1882 |
+
if (bodyStyle.WebkitTransition !== undefined ||
|
| 1883 |
+
bodyStyle.MozTransition !== undefined ||
|
| 1884 |
+
bodyStyle.msTransition !== undefined) {
|
| 1885 |
+
if (_.options.useCSS === true) {
|
| 1886 |
+
_.cssTransitions = true;
|
| 1887 |
+
}
|
| 1888 |
+
}
|
| 1889 |
+
|
| 1890 |
+
if ( _.options.fade ) {
|
| 1891 |
+
if ( typeof _.options.zIndex === 'number' ) {
|
| 1892 |
+
if( _.options.zIndex < 3 ) {
|
| 1893 |
+
_.options.zIndex = 3;
|
| 1894 |
+
}
|
| 1895 |
+
} else {
|
| 1896 |
+
_.options.zIndex = _.defaults.zIndex;
|
| 1897 |
+
}
|
| 1898 |
+
}
|
| 1899 |
+
|
| 1900 |
+
if (bodyStyle.OTransform !== undefined) {
|
| 1901 |
+
_.animType = 'OTransform';
|
| 1902 |
+
_.transformType = '-o-transform';
|
| 1903 |
+
_.transitionType = 'OTransition';
|
| 1904 |
+
if (bodyStyle.perspectiveProperty === undefined && bodyStyle.webkitPerspective === undefined) _.animType = false;
|
| 1905 |
+
}
|
| 1906 |
+
if (bodyStyle.MozTransform !== undefined) {
|
| 1907 |
+
_.animType = 'MozTransform';
|
| 1908 |
+
_.transformType = '-moz-transform';
|
| 1909 |
+
_.transitionType = 'MozTransition';
|
| 1910 |
+
if (bodyStyle.perspectiveProperty === undefined && bodyStyle.MozPerspective === undefined) _.animType = false;
|
| 1911 |
+
}
|
| 1912 |
+
if (bodyStyle.webkitTransform !== undefined) {
|
| 1913 |
+
_.animType = 'webkitTransform';
|
| 1914 |
+
_.transformType = '-webkit-transform';
|
| 1915 |
+
_.transitionType = 'webkitTransition';
|
| 1916 |
+
if (bodyStyle.perspectiveProperty === undefined && bodyStyle.webkitPerspective === undefined) _.animType = false;
|
| 1917 |
+
}
|
| 1918 |
+
if (bodyStyle.msTransform !== undefined) {
|
| 1919 |
+
_.animType = 'msTransform';
|
| 1920 |
+
_.transformType = '-ms-transform';
|
| 1921 |
+
_.transitionType = 'msTransition';
|
| 1922 |
+
if (bodyStyle.msTransform === undefined) _.animType = false;
|
| 1923 |
+
}
|
| 1924 |
+
if (bodyStyle.transform !== undefined && _.animType !== false) {
|
| 1925 |
+
_.animType = 'transform';
|
| 1926 |
+
_.transformType = 'transform';
|
| 1927 |
+
_.transitionType = 'transition';
|
| 1928 |
+
}
|
| 1929 |
+
_.transformsEnabled = _.options.useTransform && (_.animType !== null && _.animType !== false);
|
| 1930 |
+
};
|
| 1931 |
+
|
| 1932 |
+
|
| 1933 |
+
Slick.prototype.setSlideClasses = function(index) {
|
| 1934 |
+
|
| 1935 |
+
var _ = this,
|
| 1936 |
+
centerOffset, allSlides, indexOffset, remainder;
|
| 1937 |
+
|
| 1938 |
+
allSlides = _.$slider
|
| 1939 |
+
.find('.slick-slide')
|
| 1940 |
+
.removeClass('slick-active slick-center slick-current')
|
| 1941 |
+
.attr('aria-hidden', 'true');
|
| 1942 |
+
|
| 1943 |
+
_.$slides
|
| 1944 |
+
.eq(index)
|
| 1945 |
+
.addClass('slick-current');
|
| 1946 |
+
|
| 1947 |
+
if (_.options.centerMode === true) {
|
| 1948 |
+
|
| 1949 |
+
centerOffset = Math.floor(_.options.slidesToShow / 2);
|
| 1950 |
+
|
| 1951 |
+
if (_.options.infinite === true) {
|
| 1952 |
+
|
| 1953 |
+
if (index >= centerOffset && index <= (_.slideCount - 1) - centerOffset) {
|
| 1954 |
+
|
| 1955 |
+
_.$slides
|
| 1956 |
+
.slice(index - centerOffset, index + centerOffset + 1)
|
| 1957 |
+
.addClass('slick-active')
|
| 1958 |
+
.attr('aria-hidden', 'false');
|
| 1959 |
+
|
| 1960 |
+
} else {
|
| 1961 |
+
|
| 1962 |
+
indexOffset = _.options.slidesToShow + index;
|
| 1963 |
+
allSlides
|
| 1964 |
+
.slice(indexOffset - centerOffset + 1, indexOffset + centerOffset + 2)
|
| 1965 |
+
.addClass('slick-active')
|
| 1966 |
+
.attr('aria-hidden', 'false');
|
| 1967 |
+
|
| 1968 |
+
}
|
| 1969 |
+
|
| 1970 |
+
if (index === 0) {
|
| 1971 |
+
|
| 1972 |
+
allSlides
|
| 1973 |
+
.eq(allSlides.length - 1 - _.options.slidesToShow)
|
| 1974 |
+
.addClass('slick-center');
|
| 1975 |
+
|
| 1976 |
+
} else if (index === _.slideCount - 1) {
|
| 1977 |
+
|
| 1978 |
+
allSlides
|
| 1979 |
+
.eq(_.options.slidesToShow)
|
| 1980 |
+
.addClass('slick-center');
|
| 1981 |
+
|
| 1982 |
+
}
|
| 1983 |
+
|
| 1984 |
+
}
|
| 1985 |
+
|
| 1986 |
+
_.$slides
|
| 1987 |
+
.eq(index)
|
| 1988 |
+
.addClass('slick-center');
|
| 1989 |
+
|
| 1990 |
+
} else {
|
| 1991 |
+
|
| 1992 |
+
if (index >= 0 && index <= (_.slideCount - _.options.slidesToShow)) {
|
| 1993 |
+
|
| 1994 |
+
_.$slides
|
| 1995 |
+
.slice(index, index + _.options.slidesToShow)
|
| 1996 |
+
.addClass('slick-active')
|
| 1997 |
+
.attr('aria-hidden', 'false');
|
| 1998 |
+
|
| 1999 |
+
} else if (allSlides.length <= _.options.slidesToShow) {
|
| 2000 |
+
|
| 2001 |
+
allSlides
|
| 2002 |
+
.addClass('slick-active')
|
| 2003 |
+
.attr('aria-hidden', 'false');
|
| 2004 |
+
|
| 2005 |
+
} else {
|
| 2006 |
+
|
| 2007 |
+
remainder = _.slideCount % _.options.slidesToShow;
|
| 2008 |
+
indexOffset = _.options.infinite === true ? _.options.slidesToShow + index : index;
|
| 2009 |
+
|
| 2010 |
+
if (_.options.slidesToShow == _.options.slidesToScroll && (_.slideCount - index) < _.options.slidesToShow) {
|
| 2011 |
+
|
| 2012 |
+
allSlides
|
| 2013 |
+
.slice(indexOffset - (_.options.slidesToShow - remainder), indexOffset + remainder)
|
| 2014 |
+
.addClass('slick-active')
|
| 2015 |
+
.attr('aria-hidden', 'false');
|
| 2016 |
+
|
| 2017 |
+
} else {
|
| 2018 |
+
|
| 2019 |
+
allSlides
|
| 2020 |
+
.slice(indexOffset, indexOffset + _.options.slidesToShow)
|
| 2021 |
+
.addClass('slick-active')
|
| 2022 |
+
.attr('aria-hidden', 'false');
|
| 2023 |
+
|
| 2024 |
+
}
|
| 2025 |
+
|
| 2026 |
+
}
|
| 2027 |
+
|
| 2028 |
+
}
|
| 2029 |
+
|
| 2030 |
+
if (_.options.lazyLoad === 'ondemand') {
|
| 2031 |
+
_.lazyLoad();
|
| 2032 |
+
}
|
| 2033 |
+
|
| 2034 |
+
};
|
| 2035 |
+
|
| 2036 |
+
Slick.prototype.setupInfinite = function() {
|
| 2037 |
+
|
| 2038 |
+
var _ = this,
|
| 2039 |
+
i, slideIndex, infiniteCount;
|
| 2040 |
+
|
| 2041 |
+
if (_.options.fade === true) {
|
| 2042 |
+
_.options.centerMode = false;
|
| 2043 |
+
}
|
| 2044 |
+
|
| 2045 |
+
if (_.options.infinite === true && _.options.fade === false) {
|
| 2046 |
+
|
| 2047 |
+
slideIndex = null;
|
| 2048 |
+
|
| 2049 |
+
if (_.slideCount > _.options.slidesToShow) {
|
| 2050 |
+
|
| 2051 |
+
if (_.options.centerMode === true) {
|
| 2052 |
+
infiniteCount = _.options.slidesToShow + 1;
|
| 2053 |
+
} else {
|
| 2054 |
+
infiniteCount = _.options.slidesToShow;
|
| 2055 |
+
}
|
| 2056 |
+
|
| 2057 |
+
for (i = _.slideCount; i > (_.slideCount -
|
| 2058 |
+
infiniteCount); i -= 1) {
|
| 2059 |
+
slideIndex = i - 1;
|
| 2060 |
+
$(_.$slides[slideIndex]).clone(true).attr('id', '')
|
| 2061 |
+
.attr('data-slick-index', slideIndex - _.slideCount)
|
| 2062 |
+
.prependTo(_.$slideTrack).addClass('slick-cloned');
|
| 2063 |
+
}
|
| 2064 |
+
for (i = 0; i < infiniteCount; i += 1) {
|
| 2065 |
+
slideIndex = i;
|
| 2066 |
+
$(_.$slides[slideIndex]).clone(true).attr('id', '')
|
| 2067 |
+
.attr('data-slick-index', slideIndex + _.slideCount)
|
| 2068 |
+
.appendTo(_.$slideTrack).addClass('slick-cloned');
|
| 2069 |
+
}
|
| 2070 |
+
_.$slideTrack.find('.slick-cloned').find('[id]').each(function() {
|
| 2071 |
+
$(this).attr('id', '');
|
| 2072 |
+
});
|
| 2073 |
+
|
| 2074 |
+
}
|
| 2075 |
+
|
| 2076 |
+
}
|
| 2077 |
+
|
| 2078 |
+
};
|
| 2079 |
+
|
| 2080 |
+
Slick.prototype.setPaused = function(paused) {
|
| 2081 |
+
|
| 2082 |
+
var _ = this;
|
| 2083 |
+
|
| 2084 |
+
if (_.options.autoplay === true && _.options.pauseOnHover === true) {
|
| 2085 |
+
_.paused = paused;
|
| 2086 |
+
if (!paused) {
|
| 2087 |
+
_.autoPlay();
|
| 2088 |
+
} else {
|
| 2089 |
+
_.autoPlayClear();
|
| 2090 |
+
}
|
| 2091 |
+
}
|
| 2092 |
+
};
|
| 2093 |
+
|
| 2094 |
+
Slick.prototype.selectHandler = function(event) {
|
| 2095 |
+
|
| 2096 |
+
var _ = this;
|
| 2097 |
+
|
| 2098 |
+
var targetElement =
|
| 2099 |
+
$(event.target).is('.slick-slide') ?
|
| 2100 |
+
$(event.target) :
|
| 2101 |
+
$(event.target).parents('.slick-slide');
|
| 2102 |
+
|
| 2103 |
+
var index = parseInt(targetElement.attr('data-slick-index'));
|
| 2104 |
+
|
| 2105 |
+
if (!index) index = 0;
|
| 2106 |
+
|
| 2107 |
+
if (_.slideCount <= _.options.slidesToShow) {
|
| 2108 |
+
|
| 2109 |
+
_.setSlideClasses(index);
|
| 2110 |
+
_.asNavFor(index);
|
| 2111 |
+
return;
|
| 2112 |
+
|
| 2113 |
+
}
|
| 2114 |
+
|
| 2115 |
+
_.slideHandler(index);
|
| 2116 |
+
|
| 2117 |
+
};
|
| 2118 |
+
|
| 2119 |
+
Slick.prototype.slideHandler = function(index, sync, dontAnimate) {
|
| 2120 |
+
|
| 2121 |
+
var targetSlide, animSlide, oldSlide, slideLeft, targetLeft = null,
|
| 2122 |
+
_ = this;
|
| 2123 |
+
|
| 2124 |
+
sync = sync || false;
|
| 2125 |
+
|
| 2126 |
+
if (_.animating === true && _.options.waitForAnimate === true) {
|
| 2127 |
+
return;
|
| 2128 |
+
}
|
| 2129 |
+
|
| 2130 |
+
if (_.options.fade === true && _.currentSlide === index) {
|
| 2131 |
+
return;
|
| 2132 |
+
}
|
| 2133 |
+
|
| 2134 |
+
if (_.slideCount <= _.options.slidesToShow) {
|
| 2135 |
+
return;
|
| 2136 |
+
}
|
| 2137 |
+
|
| 2138 |
+
if (sync === false) {
|
| 2139 |
+
_.asNavFor(index);
|
| 2140 |
+
}
|
| 2141 |
+
|
| 2142 |
+
targetSlide = index;
|
| 2143 |
+
targetLeft = _.getLeft(targetSlide);
|
| 2144 |
+
slideLeft = _.getLeft(_.currentSlide);
|
| 2145 |
+
|
| 2146 |
+
_.currentLeft = _.swipeLeft === null ? slideLeft : _.swipeLeft;
|
| 2147 |
+
|
| 2148 |
+
if (_.options.infinite === false && _.options.centerMode === false && (index < 0 || index > _.getDotCount() * _.options.slidesToScroll)) {
|
| 2149 |
+
if (_.options.fade === false) {
|
| 2150 |
+
targetSlide = _.currentSlide;
|
| 2151 |
+
if (dontAnimate !== true) {
|
| 2152 |
+
_.animateSlide(slideLeft, function() {
|
| 2153 |
+
_.postSlide(targetSlide);
|
| 2154 |
+
});
|
| 2155 |
+
} else {
|
| 2156 |
+
_.postSlide(targetSlide);
|
| 2157 |
+
}
|
| 2158 |
+
}
|
| 2159 |
+
return;
|
| 2160 |
+
} else if (_.options.infinite === false && _.options.centerMode === true && (index < 0 || index > (_.slideCount - _.options.slidesToScroll))) {
|
| 2161 |
+
if (_.options.fade === false) {
|
| 2162 |
+
targetSlide = _.currentSlide;
|
| 2163 |
+
if (dontAnimate !== true) {
|
| 2164 |
+
_.animateSlide(slideLeft, function() {
|
| 2165 |
+
_.postSlide(targetSlide);
|
| 2166 |
+
});
|
| 2167 |
+
} else {
|
| 2168 |
+
_.postSlide(targetSlide);
|
| 2169 |
+
}
|
| 2170 |
+
}
|
| 2171 |
+
return;
|
| 2172 |
+
}
|
| 2173 |
+
|
| 2174 |
+
if (_.options.autoplay === true) {
|
| 2175 |
+
clearInterval(_.autoPlayTimer);
|
| 2176 |
+
}
|
| 2177 |
+
|
| 2178 |
+
if (targetSlide < 0) {
|
| 2179 |
+
if (_.slideCount % _.options.slidesToScroll !== 0) {
|
| 2180 |
+
animSlide = _.slideCount - (_.slideCount % _.options.slidesToScroll);
|
| 2181 |
+
} else {
|
| 2182 |
+
animSlide = _.slideCount + targetSlide;
|
| 2183 |
+
}
|
| 2184 |
+
} else if (targetSlide >= _.slideCount) {
|
| 2185 |
+
if (_.slideCount % _.options.slidesToScroll !== 0) {
|
| 2186 |
+
animSlide = 0;
|
| 2187 |
+
} else {
|
| 2188 |
+
animSlide = targetSlide - _.slideCount;
|
| 2189 |
+
}
|
| 2190 |
+
} else {
|
| 2191 |
+
animSlide = targetSlide;
|
| 2192 |
+
}
|
| 2193 |
+
|
| 2194 |
+
_.animating = true;
|
| 2195 |
+
|
| 2196 |
+
_.$slider.trigger('beforeChange', [_, _.currentSlide, animSlide]);
|
| 2197 |
+
|
| 2198 |
+
oldSlide = _.currentSlide;
|
| 2199 |
+
_.currentSlide = animSlide;
|
| 2200 |
+
|
| 2201 |
+
_.setSlideClasses(_.currentSlide);
|
| 2202 |
+
|
| 2203 |
+
_.updateDots();
|
| 2204 |
+
_.updateArrows();
|
| 2205 |
+
|
| 2206 |
+
if (_.options.fade === true) {
|
| 2207 |
+
if (dontAnimate !== true) {
|
| 2208 |
+
|
| 2209 |
+
_.fadeSlideOut(oldSlide);
|
| 2210 |
+
|
| 2211 |
+
_.fadeSlide(animSlide, function() {
|
| 2212 |
+
_.postSlide(animSlide);
|
| 2213 |
+
});
|
| 2214 |
+
|
| 2215 |
+
} else {
|
| 2216 |
+
_.postSlide(animSlide);
|
| 2217 |
+
}
|
| 2218 |
+
_.animateHeight();
|
| 2219 |
+
return;
|
| 2220 |
+
}
|
| 2221 |
+
|
| 2222 |
+
if (dontAnimate !== true) {
|
| 2223 |
+
_.animateSlide(targetLeft, function() {
|
| 2224 |
+
_.postSlide(animSlide);
|
| 2225 |
+
});
|
| 2226 |
+
} else {
|
| 2227 |
+
_.postSlide(animSlide);
|
| 2228 |
+
}
|
| 2229 |
+
|
| 2230 |
+
};
|
| 2231 |
+
|
| 2232 |
+
Slick.prototype.startLoad = function() {
|
| 2233 |
+
|
| 2234 |
+
var _ = this;
|
| 2235 |
+
|
| 2236 |
+
if (_.options.arrows === true && _.slideCount > _.options.slidesToShow) {
|
| 2237 |
+
|
| 2238 |
+
_.$prevArrow.hide();
|
| 2239 |
+
_.$nextArrow.hide();
|
| 2240 |
+
|
| 2241 |
+
}
|
| 2242 |
+
|
| 2243 |
+
if (_.options.dots === true && _.slideCount > _.options.slidesToShow) {
|
| 2244 |
+
|
| 2245 |
+
_.$dots.hide();
|
| 2246 |
+
|
| 2247 |
+
}
|
| 2248 |
+
|
| 2249 |
+
_.$slider.addClass('slick-loading');
|
| 2250 |
+
|
| 2251 |
+
};
|
| 2252 |
+
|
| 2253 |
+
Slick.prototype.swipeDirection = function() {
|
| 2254 |
+
|
| 2255 |
+
var xDist, yDist, r, swipeAngle, _ = this;
|
| 2256 |
+
|
| 2257 |
+
xDist = _.touchObject.startX - _.touchObject.curX;
|
| 2258 |
+
yDist = _.touchObject.startY - _.touchObject.curY;
|
| 2259 |
+
r = Math.atan2(yDist, xDist);
|
| 2260 |
+
|
| 2261 |
+
swipeAngle = Math.round(r * 180 / Math.PI);
|
| 2262 |
+
if (swipeAngle < 0) {
|
| 2263 |
+
swipeAngle = 360 - Math.abs(swipeAngle);
|
| 2264 |
+
}
|
| 2265 |
+
|
| 2266 |
+
if ((swipeAngle <= 45) && (swipeAngle >= 0)) {
|
| 2267 |
+
return (_.options.rtl === false ? 'left' : 'right');
|
| 2268 |
+
}
|
| 2269 |
+
if ((swipeAngle <= 360) && (swipeAngle >= 315)) {
|
| 2270 |
+
return (_.options.rtl === false ? 'left' : 'right');
|
| 2271 |
+
}
|
| 2272 |
+
if ((swipeAngle >= 135) && (swipeAngle <= 225)) {
|
| 2273 |
+
return (_.options.rtl === false ? 'right' : 'left');
|
| 2274 |
+
}
|
| 2275 |
+
if (_.options.verticalSwiping === true) {
|
| 2276 |
+
if ((swipeAngle >= 35) && (swipeAngle <= 135)) {
|
| 2277 |
+
return 'left';
|
| 2278 |
+
} else {
|
| 2279 |
+
return 'right';
|
| 2280 |
+
}
|
| 2281 |
+
}
|
| 2282 |
+
|
| 2283 |
+
return 'vertical';
|
| 2284 |
+
|
| 2285 |
+
};
|
| 2286 |
+
|
| 2287 |
+
Slick.prototype.swipeEnd = function(event) {
|
| 2288 |
+
|
| 2289 |
+
var _ = this,
|
| 2290 |
+
slideCount;
|
| 2291 |
+
|
| 2292 |
+
_.dragging = false;
|
| 2293 |
+
|
| 2294 |
+
_.shouldClick = (_.touchObject.swipeLength > 10) ? false : true;
|
| 2295 |
+
|
| 2296 |
+
if (_.touchObject.curX === undefined) {
|
| 2297 |
+
return false;
|
| 2298 |
+
}
|
| 2299 |
+
|
| 2300 |
+
if (_.touchObject.edgeHit === true) {
|
| 2301 |
+
_.$slider.trigger('edge', [_, _.swipeDirection()]);
|
| 2302 |
+
}
|
| 2303 |
+
|
| 2304 |
+
if (_.touchObject.swipeLength >= _.touchObject.minSwipe) {
|
| 2305 |
+
|
| 2306 |
+
switch (_.swipeDirection()) {
|
| 2307 |
+
case 'left':
|
| 2308 |
+
slideCount = _.options.swipeToSlide ? _.checkNavigable(_.currentSlide + _.getSlideCount()) : _.currentSlide + _.getSlideCount();
|
| 2309 |
+
_.slideHandler(slideCount);
|
| 2310 |
+
_.currentDirection = 0;
|
| 2311 |
+
_.touchObject = {};
|
| 2312 |
+
_.$slider.trigger('swipe', [_, 'left']);
|
| 2313 |
+
break;
|
| 2314 |
+
|
| 2315 |
+
case 'right':
|
| 2316 |
+
slideCount = _.options.swipeToSlide ? _.checkNavigable(_.currentSlide - _.getSlideCount()) : _.currentSlide - _.getSlideCount();
|
| 2317 |
+
_.slideHandler(slideCount);
|
| 2318 |
+
_.currentDirection = 1;
|
| 2319 |
+
_.touchObject = {};
|
| 2320 |
+
_.$slider.trigger('swipe', [_, 'right']);
|
| 2321 |
+
break;
|
| 2322 |
+
}
|
| 2323 |
+
} else {
|
| 2324 |
+
if (_.touchObject.startX !== _.touchObject.curX) {
|
| 2325 |
+
_.slideHandler(_.currentSlide);
|
| 2326 |
+
_.touchObject = {};
|
| 2327 |
+
}
|
| 2328 |
+
}
|
| 2329 |
+
|
| 2330 |
+
};
|
| 2331 |
+
|
| 2332 |
+
Slick.prototype.swipeHandler = function(event) {
|
| 2333 |
+
|
| 2334 |
+
var _ = this;
|
| 2335 |
+
|
| 2336 |
+
if ((_.options.swipe === false) || ('ontouchend' in document && _.options.swipe === false)) {
|
| 2337 |
+
return;
|
| 2338 |
+
} else if (_.options.draggable === false && event.type.indexOf('mouse') !== -1) {
|
| 2339 |
+
return;
|
| 2340 |
+
}
|
| 2341 |
+
|
| 2342 |
+
_.touchObject.fingerCount = event.originalEvent && event.originalEvent.touches !== undefined ?
|
| 2343 |
+
event.originalEvent.touches.length : 1;
|
| 2344 |
+
|
| 2345 |
+
_.touchObject.minSwipe = _.listWidth / _.options
|
| 2346 |
+
.touchThreshold;
|
| 2347 |
+
|
| 2348 |
+
if (_.options.verticalSwiping === true) {
|
| 2349 |
+
_.touchObject.minSwipe = _.listHeight / _.options
|
| 2350 |
+
.touchThreshold;
|
| 2351 |
+
}
|
| 2352 |
+
|
| 2353 |
+
switch (event.data.action) {
|
| 2354 |
+
|
| 2355 |
+
case 'start':
|
| 2356 |
+
_.swipeStart(event);
|
| 2357 |
+
break;
|
| 2358 |
+
|
| 2359 |
+
case 'move':
|
| 2360 |
+
_.swipeMove(event);
|
| 2361 |
+
break;
|
| 2362 |
+
|
| 2363 |
+
case 'end':
|
| 2364 |
+
_.swipeEnd(event);
|
| 2365 |
+
break;
|
| 2366 |
+
|
| 2367 |
+
}
|
| 2368 |
+
|
| 2369 |
+
};
|
| 2370 |
+
|
| 2371 |
+
Slick.prototype.swipeMove = function(event) {
|
| 2372 |
+
|
| 2373 |
+
var _ = this,
|
| 2374 |
+
edgeWasHit = false,
|
| 2375 |
+
curLeft, swipeDirection, swipeLength, positionOffset, touches;
|
| 2376 |
+
|
| 2377 |
+
touches = event.originalEvent !== undefined ? event.originalEvent.touches : null;
|
| 2378 |
+
|
| 2379 |
+
if (!_.dragging || touches && touches.length !== 1) {
|
| 2380 |
+
return false;
|
| 2381 |
+
}
|
| 2382 |
+
|
| 2383 |
+
curLeft = _.getLeft(_.currentSlide);
|
| 2384 |
+
|
| 2385 |
+
_.touchObject.curX = touches !== undefined ? touches[0].pageX : event.clientX;
|
| 2386 |
+
_.touchObject.curY = touches !== undefined ? touches[0].pageY : event.clientY;
|
| 2387 |
+
|
| 2388 |
+
_.touchObject.swipeLength = Math.round(Math.sqrt(
|
| 2389 |
+
Math.pow(_.touchObject.curX - _.touchObject.startX, 2)));
|
| 2390 |
+
|
| 2391 |
+
if (_.options.verticalSwiping === true) {
|
| 2392 |
+
_.touchObject.swipeLength = Math.round(Math.sqrt(
|
| 2393 |
+
Math.pow(_.touchObject.curY - _.touchObject.startY, 2)));
|
| 2394 |
+
}
|
| 2395 |
+
|
| 2396 |
+
swipeDirection = _.swipeDirection();
|
| 2397 |
+
|
| 2398 |
+
if (swipeDirection === 'vertical') {
|
| 2399 |
+
return;
|
| 2400 |
+
}
|
| 2401 |
+
|
| 2402 |
+
if (event.originalEvent !== undefined && _.touchObject.swipeLength > 4) {
|
| 2403 |
+
event.preventDefault();
|
| 2404 |
+
}
|
| 2405 |
+
|
| 2406 |
+
positionOffset = (_.options.rtl === false ? 1 : -1) * (_.touchObject.curX > _.touchObject.startX ? 1 : -1);
|
| 2407 |
+
if (_.options.verticalSwiping === true) {
|
| 2408 |
+
positionOffset = _.touchObject.curY > _.touchObject.startY ? 1 : -1;
|
| 2409 |
+
}
|
| 2410 |
+
|
| 2411 |
+
|
| 2412 |
+
swipeLength = _.touchObject.swipeLength;
|
| 2413 |
+
|
| 2414 |
+
_.touchObject.edgeHit = false;
|
| 2415 |
+
|
| 2416 |
+
if (_.options.infinite === false) {
|
| 2417 |
+
if ((_.currentSlide === 0 && swipeDirection === 'right') || (_.currentSlide >= _.getDotCount() && swipeDirection === 'left')) {
|
| 2418 |
+
swipeLength = _.touchObject.swipeLength * _.options.edgeFriction;
|
| 2419 |
+
_.touchObject.edgeHit = true;
|
| 2420 |
+
}
|
| 2421 |
+
}
|
| 2422 |
+
|
| 2423 |
+
if (_.options.vertical === false) {
|
| 2424 |
+
_.swipeLeft = curLeft + swipeLength * positionOffset;
|
| 2425 |
+
} else {
|
| 2426 |
+
_.swipeLeft = curLeft + (swipeLength * (_.$list.height() / _.listWidth)) * positionOffset;
|
| 2427 |
+
}
|
| 2428 |
+
if (_.options.verticalSwiping === true) {
|
| 2429 |
+
_.swipeLeft = curLeft + swipeLength * positionOffset;
|
| 2430 |
+
}
|
| 2431 |
+
|
| 2432 |
+
if (_.options.fade === true || _.options.touchMove === false) {
|
| 2433 |
+
return false;
|
| 2434 |
+
}
|
| 2435 |
+
|
| 2436 |
+
if (_.animating === true) {
|
| 2437 |
+
_.swipeLeft = null;
|
| 2438 |
+
return false;
|
| 2439 |
+
}
|
| 2440 |
+
|
| 2441 |
+
_.setCSS(_.swipeLeft);
|
| 2442 |
+
|
| 2443 |
+
};
|
| 2444 |
+
|
| 2445 |
+
Slick.prototype.swipeStart = function(event) {
|
| 2446 |
+
|
| 2447 |
+
var _ = this,
|
| 2448 |
+
touches;
|
| 2449 |
+
|
| 2450 |
+
if (_.touchObject.fingerCount !== 1 || _.slideCount <= _.options.slidesToShow) {
|
| 2451 |
+
_.touchObject = {};
|
| 2452 |
+
return false;
|
| 2453 |
+
}
|
| 2454 |
+
|
| 2455 |
+
if (event.originalEvent !== undefined && event.originalEvent.touches !== undefined) {
|
| 2456 |
+
touches = event.originalEvent.touches[0];
|
| 2457 |
+
}
|
| 2458 |
+
|
| 2459 |
+
_.touchObject.startX = _.touchObject.curX = touches !== undefined ? touches.pageX : event.clientX;
|
| 2460 |
+
_.touchObject.startY = _.touchObject.curY = touches !== undefined ? touches.pageY : event.clientY;
|
| 2461 |
+
|
| 2462 |
+
_.dragging = true;
|
| 2463 |
+
|
| 2464 |
+
};
|
| 2465 |
+
|
| 2466 |
+
Slick.prototype.unfilterSlides = Slick.prototype.slickUnfilter = function() {
|
| 2467 |
+
|
| 2468 |
+
var _ = this;
|
| 2469 |
+
|
| 2470 |
+
if (_.$slidesCache !== null) {
|
| 2471 |
+
|
| 2472 |
+
_.unload();
|
| 2473 |
+
|
| 2474 |
+
_.$slideTrack.children(this.options.slide).detach();
|
| 2475 |
+
|
| 2476 |
+
_.$slidesCache.appendTo(_.$slideTrack);
|
| 2477 |
+
|
| 2478 |
+
_.reinit();
|
| 2479 |
+
|
| 2480 |
+
}
|
| 2481 |
+
|
| 2482 |
+
};
|
| 2483 |
+
|
| 2484 |
+
Slick.prototype.unload = function() {
|
| 2485 |
+
|
| 2486 |
+
var _ = this;
|
| 2487 |
+
|
| 2488 |
+
$('.slick-cloned', _.$slider).remove();
|
| 2489 |
+
|
| 2490 |
+
if (_.$dots) {
|
| 2491 |
+
_.$dots.remove();
|
| 2492 |
+
}
|
| 2493 |
+
|
| 2494 |
+
if (_.$prevArrow && _.htmlExpr.test(_.options.prevArrow)) {
|
| 2495 |
+
_.$prevArrow.remove();
|
| 2496 |
+
}
|
| 2497 |
+
|
| 2498 |
+
if (_.$nextArrow && _.htmlExpr.test(_.options.nextArrow)) {
|
| 2499 |
+
_.$nextArrow.remove();
|
| 2500 |
+
}
|
| 2501 |
+
|
| 2502 |
+
_.$slides
|
| 2503 |
+
.removeClass('slick-slide slick-active slick-visible slick-current')
|
| 2504 |
+
.attr('aria-hidden', 'true')
|
| 2505 |
+
.css('width', '');
|
| 2506 |
+
|
| 2507 |
+
};
|
| 2508 |
+
|
| 2509 |
+
Slick.prototype.unslick = function(fromBreakpoint) {
|
| 2510 |
+
|
| 2511 |
+
var _ = this;
|
| 2512 |
+
_.$slider.trigger('unslick', [_, fromBreakpoint]);
|
| 2513 |
+
_.destroy();
|
| 2514 |
+
|
| 2515 |
+
};
|
| 2516 |
+
|
| 2517 |
+
Slick.prototype.updateArrows = function() {
|
| 2518 |
+
|
| 2519 |
+
var _ = this,
|
| 2520 |
+
centerOffset;
|
| 2521 |
+
|
| 2522 |
+
centerOffset = Math.floor(_.options.slidesToShow / 2);
|
| 2523 |
+
|
| 2524 |
+
if ( _.options.arrows === true &&
|
| 2525 |
+
_.slideCount > _.options.slidesToShow &&
|
| 2526 |
+
!_.options.infinite ) {
|
| 2527 |
+
|
| 2528 |
+
_.$prevArrow.removeClass('slick-disabled').attr('aria-disabled', 'false');
|
| 2529 |
+
_.$nextArrow.removeClass('slick-disabled').attr('aria-disabled', 'false');
|
| 2530 |
+
|
| 2531 |
+
if (_.currentSlide === 0) {
|
| 2532 |
+
|
| 2533 |
+
_.$prevArrow.addClass('slick-disabled').attr('aria-disabled', 'true');
|
| 2534 |
+
_.$nextArrow.removeClass('slick-disabled').attr('aria-disabled', 'false');
|
| 2535 |
+
|
| 2536 |
+
} else if (_.currentSlide >= _.slideCount - _.options.slidesToShow && _.options.centerMode === false) {
|
| 2537 |
+
|
| 2538 |
+
_.$nextArrow.addClass('slick-disabled').attr('aria-disabled', 'true');
|
| 2539 |
+
_.$prevArrow.removeClass('slick-disabled').attr('aria-disabled', 'false');
|
| 2540 |
+
|
| 2541 |
+
} else if (_.currentSlide >= _.slideCount - 1 && _.options.centerMode === true) {
|
| 2542 |
+
|
| 2543 |
+
_.$nextArrow.addClass('slick-disabled').attr('aria-disabled', 'true');
|
| 2544 |
+
_.$prevArrow.removeClass('slick-disabled').attr('aria-disabled', 'false');
|
| 2545 |
+
|
| 2546 |
+
}
|
| 2547 |
+
|
| 2548 |
+
}
|
| 2549 |
+
|
| 2550 |
+
};
|
| 2551 |
+
|
| 2552 |
+
Slick.prototype.updateDots = function() {
|
| 2553 |
+
|
| 2554 |
+
var _ = this;
|
| 2555 |
+
|
| 2556 |
+
if (_.$dots !== null) {
|
| 2557 |
+
|
| 2558 |
+
_.$dots
|
| 2559 |
+
.find('li')
|
| 2560 |
+
.removeClass('slick-active')
|
| 2561 |
+
.attr('aria-hidden', 'true');
|
| 2562 |
+
|
| 2563 |
+
_.$dots
|
| 2564 |
+
.find('li')
|
| 2565 |
+
.eq(Math.floor(_.currentSlide / _.options.slidesToScroll))
|
| 2566 |
+
.addClass('slick-active')
|
| 2567 |
+
.attr('aria-hidden', 'false');
|
| 2568 |
+
|
| 2569 |
+
}
|
| 2570 |
+
|
| 2571 |
+
};
|
| 2572 |
+
|
| 2573 |
+
Slick.prototype.visibility = function() {
|
| 2574 |
+
|
| 2575 |
+
var _ = this;
|
| 2576 |
+
|
| 2577 |
+
if (document[_.hidden]) {
|
| 2578 |
+
_.paused = true;
|
| 2579 |
+
_.autoPlayClear();
|
| 2580 |
+
} else {
|
| 2581 |
+
if (_.options.autoplay === true) {
|
| 2582 |
+
_.paused = false;
|
| 2583 |
+
_.autoPlay();
|
| 2584 |
+
}
|
| 2585 |
+
}
|
| 2586 |
+
|
| 2587 |
+
};
|
| 2588 |
+
Slick.prototype.initADA = function() {
|
| 2589 |
+
var _ = this;
|
| 2590 |
+
_.$slides.add(_.$slideTrack.find('.slick-cloned')).attr({
|
| 2591 |
+
'aria-hidden': 'true',
|
| 2592 |
+
'tabindex': '-1'
|
| 2593 |
+
}).find('a, input, button, select').attr({
|
| 2594 |
+
'tabindex': '-1'
|
| 2595 |
+
});
|
| 2596 |
+
|
| 2597 |
+
_.$slideTrack.attr('role', 'listbox');
|
| 2598 |
+
|
| 2599 |
+
_.$slides.not(_.$slideTrack.find('.slick-cloned')).each(function(i) {
|
| 2600 |
+
$(this).attr({
|
| 2601 |
+
'role': 'option',
|
| 2602 |
+
'aria-describedby': 'slick-slide' + _.instanceUid + i + ''
|
| 2603 |
+
});
|
| 2604 |
+
});
|
| 2605 |
+
|
| 2606 |
+
if (_.$dots !== null) {
|
| 2607 |
+
_.$dots.attr('role', 'tablist').find('li').each(function(i) {
|
| 2608 |
+
$(this).attr({
|
| 2609 |
+
'role': 'presentation',
|
| 2610 |
+
'aria-selected': 'false',
|
| 2611 |
+
'aria-controls': 'navigation' + _.instanceUid + i + '',
|
| 2612 |
+
'id': 'slick-slide' + _.instanceUid + i + ''
|
| 2613 |
+
});
|
| 2614 |
+
})
|
| 2615 |
+
.first().attr('aria-selected', 'true').end()
|
| 2616 |
+
.find('button').attr('role', 'button').end()
|
| 2617 |
+
.closest('div').attr('role', 'toolbar');
|
| 2618 |
+
}
|
| 2619 |
+
_.activateADA();
|
| 2620 |
+
|
| 2621 |
+
};
|
| 2622 |
+
|
| 2623 |
+
Slick.prototype.activateADA = function() {
|
| 2624 |
+
var _ = this;
|
| 2625 |
+
|
| 2626 |
+
_.$slideTrack.find('.slick-active').attr({
|
| 2627 |
+
'aria-hidden': 'false'
|
| 2628 |
+
}).find('a, input, button, select').attr({
|
| 2629 |
+
'tabindex': '0'
|
| 2630 |
+
});
|
| 2631 |
+
|
| 2632 |
+
};
|
| 2633 |
+
|
| 2634 |
+
Slick.prototype.focusHandler = function() {
|
| 2635 |
+
var _ = this;
|
| 2636 |
+
_.$slider.on('focus.slick blur.slick', '*', function(event) {
|
| 2637 |
+
event.stopImmediatePropagation();
|
| 2638 |
+
var sf = $(this);
|
| 2639 |
+
setTimeout(function() {
|
| 2640 |
+
if (_.isPlay) {
|
| 2641 |
+
if (sf.is(':focus')) {
|
| 2642 |
+
_.autoPlayClear();
|
| 2643 |
+
_.paused = true;
|
| 2644 |
+
} else {
|
| 2645 |
+
_.paused = false;
|
| 2646 |
+
_.autoPlay();
|
| 2647 |
+
}
|
| 2648 |
+
}
|
| 2649 |
+
}, 0);
|
| 2650 |
+
});
|
| 2651 |
+
};
|
| 2652 |
+
|
| 2653 |
+
$.fn.slick = function() {
|
| 2654 |
+
var _ = this,
|
| 2655 |
+
opt = arguments[0],
|
| 2656 |
+
args = Array.prototype.slice.call(arguments, 1),
|
| 2657 |
+
l = _.length,
|
| 2658 |
+
i,
|
| 2659 |
+
ret;
|
| 2660 |
+
for (i = 0; i < l; i++) {
|
| 2661 |
+
if (typeof opt == 'object' || typeof opt == 'undefined')
|
| 2662 |
+
_[i].slick = new Slick(_[i], opt);
|
| 2663 |
+
else
|
| 2664 |
+
ret = _[i].slick[opt].apply(_[i].slick, args);
|
| 2665 |
+
if (typeof ret != 'undefined') return ret;
|
| 2666 |
+
}
|
| 2667 |
+
return _;
|
| 2668 |
+
};
|
| 2669 |
+
|
| 2670 |
+
}));
|
assets/js/slick/slick.less
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* Slider */
|
| 2 |
+
|
| 3 |
+
.slick-slider {
|
| 4 |
+
position: relative;
|
| 5 |
+
display: block;
|
| 6 |
+
-moz-box-sizing: border-box;
|
| 7 |
+
box-sizing: border-box;
|
| 8 |
+
-webkit-touch-callout: none;
|
| 9 |
+
-webkit-user-select: none;
|
| 10 |
+
-khtml-user-select: none;
|
| 11 |
+
-moz-user-select: none;
|
| 12 |
+
-ms-user-select: none;
|
| 13 |
+
user-select: none;
|
| 14 |
+
-ms-touch-action: pan-y;
|
| 15 |
+
touch-action: pan-y;
|
| 16 |
+
-webkit-tap-highlight-color: transparent;
|
| 17 |
+
}
|
| 18 |
+
.slick-list {
|
| 19 |
+
position: relative;
|
| 20 |
+
overflow: hidden;
|
| 21 |
+
display: block;
|
| 22 |
+
margin: 0;
|
| 23 |
+
padding: 0;
|
| 24 |
+
|
| 25 |
+
&:focus {
|
| 26 |
+
outline: none;
|
| 27 |
+
}
|
| 28 |
+
|
| 29 |
+
&.dragging {
|
| 30 |
+
cursor: pointer;
|
| 31 |
+
cursor: hand;
|
| 32 |
+
}
|
| 33 |
+
}
|
| 34 |
+
.slick-slider .slick-track,
|
| 35 |
+
.slick-slider .slick-list {
|
| 36 |
+
-webkit-transform: translate3d(0, 0, 0);
|
| 37 |
+
-moz-transform: translate3d(0, 0, 0);
|
| 38 |
+
-ms-transform: translate3d(0, 0, 0);
|
| 39 |
+
-o-transform: translate3d(0, 0, 0);
|
| 40 |
+
transform: translate3d(0, 0, 0);
|
| 41 |
+
}
|
| 42 |
+
|
| 43 |
+
.slick-track {
|
| 44 |
+
position: relative;
|
| 45 |
+
left: 0;
|
| 46 |
+
top: 0;
|
| 47 |
+
display: block;
|
| 48 |
+
|
| 49 |
+
&:before,
|
| 50 |
+
&:after {
|
| 51 |
+
content: "";
|
| 52 |
+
display: table;
|
| 53 |
+
}
|
| 54 |
+
|
| 55 |
+
&:after {
|
| 56 |
+
clear: both;
|
| 57 |
+
}
|
| 58 |
+
|
| 59 |
+
.slick-loading & {
|
| 60 |
+
visibility: hidden;
|
| 61 |
+
}
|
| 62 |
+
}
|
| 63 |
+
.slick-slide {
|
| 64 |
+
float: left;
|
| 65 |
+
height: 100%;
|
| 66 |
+
min-height: 1px;
|
| 67 |
+
[dir="rtl"] & {
|
| 68 |
+
float: right;
|
| 69 |
+
}
|
| 70 |
+
img {
|
| 71 |
+
display: block;
|
| 72 |
+
}
|
| 73 |
+
&.slick-loading img {
|
| 74 |
+
display: none;
|
| 75 |
+
}
|
| 76 |
+
|
| 77 |
+
display: none;
|
| 78 |
+
|
| 79 |
+
&.dragging img {
|
| 80 |
+
pointer-events: none;
|
| 81 |
+
}
|
| 82 |
+
|
| 83 |
+
.slick-initialized & {
|
| 84 |
+
display: block;
|
| 85 |
+
}
|
| 86 |
+
|
| 87 |
+
.slick-loading & {
|
| 88 |
+
visibility: hidden;
|
| 89 |
+
}
|
| 90 |
+
|
| 91 |
+
.slick-vertical & {
|
| 92 |
+
display: block;
|
| 93 |
+
height: auto;
|
| 94 |
+
border: 1px solid transparent;
|
| 95 |
+
}
|
| 96 |
+
}
|
| 97 |
+
.slick-arrow.slick-hidden {
|
| 98 |
+
display: none;
|
| 99 |
+
}
|
assets/js/slick/slick.min.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/*
|
| 2 |
+
_ _ _ _
|
| 3 |
+
___| (_) ___| | __ (_)___
|
| 4 |
+
/ __| | |/ __| |/ / | / __|
|
| 5 |
+
\__ \ | | (__| < _ | \__ \
|
| 6 |
+
|___/_|_|\___|_|\_(_)/ |___/
|
| 7 |
+
|__/
|
| 8 |
+
|
| 9 |
+
Version: 1.5.9
|
| 10 |
+
Author: Ken Wheeler
|
| 11 |
+
Website: http://kenwheeler.github.io
|
| 12 |
+
Docs: http://kenwheeler.github.io/slick
|
| 13 |
+
Repo: http://github.com/kenwheeler/slick
|
| 14 |
+
Issues: http://github.com/kenwheeler/slick/issues
|
| 15 |
+
|
| 16 |
+
*/
|
| 17 |
+
!function(a){"use strict";"function"==typeof define&&define.amd?define(["jquery"],a):"undefined"!=typeof exports?module.exports=a(require("jquery")):a(jQuery)}(function(a){"use strict";var b=window.Slick||{};b=function(){function c(c,d){var f,e=this;e.defaults={accessibility:!0,adaptiveHeight:!1,appendArrows:a(c),appendDots:a(c),arrows:!0,asNavFor:null,prevArrow:'<button type="button" data-role="none" class="slick-prev" aria-label="Previous" tabindex="0" role="button">Previous</button>',nextArrow:'<button type="button" data-role="none" class="slick-next" aria-label="Next" tabindex="0" role="button">Next</button>',autoplay:!1,autoplaySpeed:3e3,centerMode:!1,centerPadding:"50px",cssEase:"ease",customPaging:function(a,b){return'<button type="button" data-role="none" role="button" aria-required="false" tabindex="0">'+(b+1)+"</button>"},dots:!1,dotsClass:"slick-dots",draggable:!0,easing:"linear",edgeFriction:.35,fade:!1,focusOnSelect:!1,infinite:!0,initialSlide:0,lazyLoad:"ondemand",mobileFirst:!1,pauseOnHover:!0,pauseOnDotsHover:!1,respondTo:"window",responsive:null,rows:1,rtl:!1,slide:"",slidesPerRow:1,slidesToShow:1,slidesToScroll:1,speed:500,swipe:!0,swipeToSlide:!1,touchMove:!0,touchThreshold:5,useCSS:!0,useTransform:!1,variableWidth:!1,vertical:!1,verticalSwiping:!1,waitForAnimate:!0,zIndex:1e3},e.initials={animating:!1,dragging:!1,autoPlayTimer:null,currentDirection:0,currentLeft:null,currentSlide:0,direction:1,$dots:null,listWidth:null,listHeight:null,loadIndex:0,$nextArrow:null,$prevArrow:null,slideCount:null,slideWidth:null,$slideTrack:null,$slides:null,sliding:!1,slideOffset:0,swipeLeft:null,$list:null,touchObject:{},transformsEnabled:!1,unslicked:!1},a.extend(e,e.initials),e.activeBreakpoint=null,e.animType=null,e.animProp=null,e.breakpoints=[],e.breakpointSettings=[],e.cssTransitions=!1,e.hidden="hidden",e.paused=!1,e.positionProp=null,e.respondTo=null,e.rowCount=1,e.shouldClick=!0,e.$slider=a(c),e.$slidesCache=null,e.transformType=null,e.transitionType=null,e.visibilityChange="visibilitychange",e.windowWidth=0,e.windowTimer=null,f=a(c).data("slick")||{},e.options=a.extend({},e.defaults,f,d),e.currentSlide=e.options.initialSlide,e.originalSettings=e.options,"undefined"!=typeof document.mozHidden?(e.hidden="mozHidden",e.visibilityChange="mozvisibilitychange"):"undefined"!=typeof document.webkitHidden&&(e.hidden="webkitHidden",e.visibilityChange="webkitvisibilitychange"),e.autoPlay=a.proxy(e.autoPlay,e),e.autoPlayClear=a.proxy(e.autoPlayClear,e),e.changeSlide=a.proxy(e.changeSlide,e),e.clickHandler=a.proxy(e.clickHandler,e),e.selectHandler=a.proxy(e.selectHandler,e),e.setPosition=a.proxy(e.setPosition,e),e.swipeHandler=a.proxy(e.swipeHandler,e),e.dragHandler=a.proxy(e.dragHandler,e),e.keyHandler=a.proxy(e.keyHandler,e),e.autoPlayIterator=a.proxy(e.autoPlayIterator,e),e.instanceUid=b++,e.htmlExpr=/^(?:\s*(<[\w\W]+>)[^>]*)$/,e.registerBreakpoints(),e.init(!0),e.checkResponsive(!0)}var b=0;return c}(),b.prototype.addSlide=b.prototype.slickAdd=function(b,c,d){var e=this;if("boolean"==typeof c)d=c,c=null;else if(0>c||c>=e.slideCount)return!1;e.unload(),"number"==typeof c?0===c&&0===e.$slides.length?a(b).appendTo(e.$slideTrack):d?a(b).insertBefore(e.$slides.eq(c)):a(b).insertAfter(e.$slides.eq(c)):d===!0?a(b).prependTo(e.$slideTrack):a(b).appendTo(e.$slideTrack),e.$slides=e.$slideTrack.children(this.options.slide),e.$slideTrack.children(this.options.slide).detach(),e.$slideTrack.append(e.$slides),e.$slides.each(function(b,c){a(c).attr("data-slick-index",b)}),e.$slidesCache=e.$slides,e.reinit()},b.prototype.animateHeight=function(){var a=this;if(1===a.options.slidesToShow&&a.options.adaptiveHeight===!0&&a.options.vertical===!1){var b=a.$slides.eq(a.currentSlide).outerHeight(!0);a.$list.animate({height:b},a.options.speed)}},b.prototype.animateSlide=function(b,c){var d={},e=this;e.animateHeight(),e.options.rtl===!0&&e.options.vertical===!1&&(b=-b),e.transformsEnabled===!1?e.options.vertical===!1?e.$slideTrack.animate({left:b},e.options.speed,e.options.easing,c):e.$slideTrack.animate({top:b},e.options.speed,e.options.easing,c):e.cssTransitions===!1?(e.options.rtl===!0&&(e.currentLeft=-e.currentLeft),a({animStart:e.currentLeft}).animate({animStart:b},{duration:e.options.speed,easing:e.options.easing,step:function(a){a=Math.ceil(a),e.options.vertical===!1?(d[e.animType]="translate("+a+"px, 0px)",e.$slideTrack.css(d)):(d[e.animType]="translate(0px,"+a+"px)",e.$slideTrack.css(d))},complete:function(){c&&c.call()}})):(e.applyTransition(),b=Math.ceil(b),e.options.vertical===!1?d[e.animType]="translate3d("+b+"px, 0px, 0px)":d[e.animType]="translate3d(0px,"+b+"px, 0px)",e.$slideTrack.css(d),c&&setTimeout(function(){e.disableTransition(),c.call()},e.options.speed))},b.prototype.asNavFor=function(b){var c=this,d=c.options.asNavFor;d&&null!==d&&(d=a(d).not(c.$slider)),null!==d&&"object"==typeof d&&d.each(function(){var c=a(this).slick("getSlick");c.unslicked||c.slideHandler(b,!0)})},b.prototype.applyTransition=function(a){var b=this,c={};b.options.fade===!1?c[b.transitionType]=b.transformType+" "+b.options.speed+"ms "+b.options.cssEase:c[b.transitionType]="opacity "+b.options.speed+"ms "+b.options.cssEase,b.options.fade===!1?b.$slideTrack.css(c):b.$slides.eq(a).css(c)},b.prototype.autoPlay=function(){var a=this;a.autoPlayTimer&&clearInterval(a.autoPlayTimer),a.slideCount>a.options.slidesToShow&&a.paused!==!0&&(a.autoPlayTimer=setInterval(a.autoPlayIterator,a.options.autoplaySpeed))},b.prototype.autoPlayClear=function(){var a=this;a.autoPlayTimer&&clearInterval(a.autoPlayTimer)},b.prototype.autoPlayIterator=function(){var a=this;a.options.infinite===!1?1===a.direction?(a.currentSlide+1===a.slideCount-1&&(a.direction=0),a.slideHandler(a.currentSlide+a.options.slidesToScroll)):(a.currentSlide-1===0&&(a.direction=1),a.slideHandler(a.currentSlide-a.options.slidesToScroll)):a.slideHandler(a.currentSlide+a.options.slidesToScroll)},b.prototype.buildArrows=function(){var b=this;b.options.arrows===!0&&(b.$prevArrow=a(b.options.prevArrow).addClass("slick-arrow"),b.$nextArrow=a(b.options.nextArrow).addClass("slick-arrow"),b.slideCount>b.options.slidesToShow?(b.$prevArrow.removeClass("slick-hidden").removeAttr("aria-hidden tabindex"),b.$nextArrow.removeClass("slick-hidden").removeAttr("aria-hidden tabindex"),b.htmlExpr.test(b.options.prevArrow)&&b.$prevArrow.prependTo(b.options.appendArrows),b.htmlExpr.test(b.options.nextArrow)&&b.$nextArrow.appendTo(b.options.appendArrows),b.options.infinite!==!0&&b.$prevArrow.addClass("slick-disabled").attr("aria-disabled","true")):b.$prevArrow.add(b.$nextArrow).addClass("slick-hidden").attr({"aria-disabled":"true",tabindex:"-1"}))},b.prototype.buildDots=function(){var c,d,b=this;if(b.options.dots===!0&&b.slideCount>b.options.slidesToShow){for(d='<ul class="'+b.options.dotsClass+'">',c=0;c<=b.getDotCount();c+=1)d+="<li>"+b.options.customPaging.call(this,b,c)+"</li>";d+="</ul>",b.$dots=a(d).appendTo(b.options.appendDots),b.$dots.find("li").first().addClass("slick-active").attr("aria-hidden","false")}},b.prototype.buildOut=function(){var b=this;b.$slides=b.$slider.children(b.options.slide+":not(.slick-cloned)").addClass("slick-slide"),b.slideCount=b.$slides.length,b.$slides.each(function(b,c){a(c).attr("data-slick-index",b).data("originalStyling",a(c).attr("style")||"")}),b.$slider.addClass("slick-slider"),b.$slideTrack=0===b.slideCount?a('<div class="slick-track"/>').appendTo(b.$slider):b.$slides.wrapAll('<div class="slick-track"/>').parent(),b.$list=b.$slideTrack.wrap('<div aria-live="polite" class="slick-list"/>').parent(),b.$slideTrack.css("opacity",0),(b.options.centerMode===!0||b.options.swipeToSlide===!0)&&(b.options.slidesToScroll=1),a("img[data-lazy]",b.$slider).not("[src]").addClass("slick-loading"),b.setupInfinite(),b.buildArrows(),b.buildDots(),b.updateDots(),b.setSlideClasses("number"==typeof b.currentSlide?b.currentSlide:0),b.options.draggable===!0&&b.$list.addClass("draggable")},b.prototype.buildRows=function(){var b,c,d,e,f,g,h,a=this;if(e=document.createDocumentFragment(),g=a.$slider.children(),a.options.rows>1){for(h=a.options.slidesPerRow*a.options.rows,f=Math.ceil(g.length/h),b=0;f>b;b++){var i=document.createElement("div");for(c=0;c<a.options.rows;c++){var j=document.createElement("div");for(d=0;d<a.options.slidesPerRow;d++){var k=b*h+(c*a.options.slidesPerRow+d);g.get(k)&&j.appendChild(g.get(k))}i.appendChild(j)}e.appendChild(i)}a.$slider.html(e),a.$slider.children().children().children().css({width:100/a.options.slidesPerRow+"%",display:"inline-block"})}},b.prototype.checkResponsive=function(b,c){var e,f,g,d=this,h=!1,i=d.$slider.width(),j=window.innerWidth||a(window).width();if("window"===d.respondTo?g=j:"slider"===d.respondTo?g=i:"min"===d.respondTo&&(g=Math.min(j,i)),d.options.responsive&&d.options.responsive.length&&null!==d.options.responsive){f=null;for(e in d.breakpoints)d.breakpoints.hasOwnProperty(e)&&(d.originalSettings.mobileFirst===!1?g<d.breakpoints[e]&&(f=d.breakpoints[e]):g>d.breakpoints[e]&&(f=d.breakpoints[e]));null!==f?null!==d.activeBreakpoint?(f!==d.activeBreakpoint||c)&&(d.activeBreakpoint=f,"unslick"===d.breakpointSettings[f]?d.unslick(f):(d.options=a.extend({},d.originalSettings,d.breakpointSettings[f]),b===!0&&(d.currentSlide=d.options.initialSlide),d.refresh(b)),h=f):(d.activeBreakpoint=f,"unslick"===d.breakpointSettings[f]?d.unslick(f):(d.options=a.extend({},d.originalSettings,d.breakpointSettings[f]),b===!0&&(d.currentSlide=d.options.initialSlide),d.refresh(b)),h=f):null!==d.activeBreakpoint&&(d.activeBreakpoint=null,d.options=d.originalSettings,b===!0&&(d.currentSlide=d.options.initialSlide),d.refresh(b),h=f),b||h===!1||d.$slider.trigger("breakpoint",[d,h])}},b.prototype.changeSlide=function(b,c){var f,g,h,d=this,e=a(b.target);switch(e.is("a")&&b.preventDefault(),e.is("li")||(e=e.closest("li")),h=d.slideCount%d.options.slidesToScroll!==0,f=h?0:(d.slideCount-d.currentSlide)%d.options.slidesToScroll,b.data.message){case"previous":g=0===f?d.options.slidesToScroll:d.options.slidesToShow-f,d.slideCount>d.options.slidesToShow&&d.slideHandler(d.currentSlide-g,!1,c);break;case"next":g=0===f?d.options.slidesToScroll:f,d.slideCount>d.options.slidesToShow&&d.slideHandler(d.currentSlide+g,!1,c);break;case"index":var i=0===b.data.index?0:b.data.index||e.index()*d.options.slidesToScroll;d.slideHandler(d.checkNavigable(i),!1,c),e.children().trigger("focus");break;default:return}},b.prototype.checkNavigable=function(a){var c,d,b=this;if(c=b.getNavigableIndexes(),d=0,a>c[c.length-1])a=c[c.length-1];else for(var e in c){if(a<c[e]){a=d;break}d=c[e]}return a},b.prototype.cleanUpEvents=function(){var b=this;b.options.dots&&null!==b.$dots&&(a("li",b.$dots).off("click.slick",b.changeSlide),b.options.pauseOnDotsHover===!0&&b.options.autoplay===!0&&a("li",b.$dots).off("mouseenter.slick",a.proxy(b.setPaused,b,!0)).off("mouseleave.slick",a.proxy(b.setPaused,b,!1))),b.options.arrows===!0&&b.slideCount>b.options.slidesToShow&&(b.$prevArrow&&b.$prevArrow.off("click.slick",b.changeSlide),b.$nextArrow&&b.$nextArrow.off("click.slick",b.changeSlide)),b.$list.off("touchstart.slick mousedown.slick",b.swipeHandler),b.$list.off("touchmove.slick mousemove.slick",b.swipeHandler),b.$list.off("touchend.slick mouseup.slick",b.swipeHandler),b.$list.off("touchcancel.slick mouseleave.slick",b.swipeHandler),b.$list.off("click.slick",b.clickHandler),a(document).off(b.visibilityChange,b.visibility),b.$list.off("mouseenter.slick",a.proxy(b.setPaused,b,!0)),b.$list.off("mouseleave.slick",a.proxy(b.setPaused,b,!1)),b.options.accessibility===!0&&b.$list.off("keydown.slick",b.keyHandler),b.options.focusOnSelect===!0&&a(b.$slideTrack).children().off("click.slick",b.selectHandler),a(window).off("orientationchange.slick.slick-"+b.instanceUid,b.orientationChange),a(window).off("resize.slick.slick-"+b.instanceUid,b.resize),a("[draggable!=true]",b.$slideTrack).off("dragstart",b.preventDefault),a(window).off("load.slick.slick-"+b.instanceUid,b.setPosition),a(document).off("ready.slick.slick-"+b.instanceUid,b.setPosition)},b.prototype.cleanUpRows=function(){var b,a=this;a.options.rows>1&&(b=a.$slides.children().children(),b.removeAttr("style"),a.$slider.html(b))},b.prototype.clickHandler=function(a){var b=this;b.shouldClick===!1&&(a.stopImmediatePropagation(),a.stopPropagation(),a.preventDefault())},b.prototype.destroy=function(b){var c=this;c.autoPlayClear(),c.touchObject={},c.cleanUpEvents(),a(".slick-cloned",c.$slider).detach(),c.$dots&&c.$dots.remove(),c.$prevArrow&&c.$prevArrow.length&&(c.$prevArrow.removeClass("slick-disabled slick-arrow slick-hidden").removeAttr("aria-hidden aria-disabled tabindex").css("display",""),c.htmlExpr.test(c.options.prevArrow)&&c.$prevArrow.remove()),c.$nextArrow&&c.$nextArrow.length&&(c.$nextArrow.removeClass("slick-disabled slick-arrow slick-hidden").removeAttr("aria-hidden aria-disabled tabindex").css("display",""),c.htmlExpr.test(c.options.nextArrow)&&c.$nextArrow.remove()),c.$slides&&(c.$slides.removeClass("slick-slide slick-active slick-center slick-visible slick-current").removeAttr("aria-hidden").removeAttr("data-slick-index").each(function(){a(this).attr("style",a(this).data("originalStyling"))}),c.$slideTrack.children(this.options.slide).detach(),c.$slideTrack.detach(),c.$list.detach(),c.$slider.append(c.$slides)),c.cleanUpRows(),c.$slider.removeClass("slick-slider"),c.$slider.removeClass("slick-initialized"),c.unslicked=!0,b||c.$slider.trigger("destroy",[c])},b.prototype.disableTransition=function(a){var b=this,c={};c[b.transitionType]="",b.options.fade===!1?b.$slideTrack.css(c):b.$slides.eq(a).css(c)},b.prototype.fadeSlide=function(a,b){var c=this;c.cssTransitions===!1?(c.$slides.eq(a).css({zIndex:c.options.zIndex}),c.$slides.eq(a).animate({opacity:1},c.options.speed,c.options.easing,b)):(c.applyTransition(a),c.$slides.eq(a).css({opacity:1,zIndex:c.options.zIndex}),b&&setTimeout(function(){c.disableTransition(a),b.call()},c.options.speed))},b.prototype.fadeSlideOut=function(a){var b=this;b.cssTransitions===!1?b.$slides.eq(a).animate({opacity:0,zIndex:b.options.zIndex-2},b.options.speed,b.options.easing):(b.applyTransition(a),b.$slides.eq(a).css({opacity:0,zIndex:b.options.zIndex-2}))},b.prototype.filterSlides=b.prototype.slickFilter=function(a){var b=this;null!==a&&(b.$slidesCache=b.$slides,b.unload(),b.$slideTrack.children(this.options.slide).detach(),b.$slidesCache.filter(a).appendTo(b.$slideTrack),b.reinit())},b.prototype.getCurrent=b.prototype.slickCurrentSlide=function(){var a=this;return a.currentSlide},b.prototype.getDotCount=function(){var a=this,b=0,c=0,d=0;if(a.options.infinite===!0)for(;b<a.slideCount;)++d,b=c+a.options.slidesToScroll,c+=a.options.slidesToScroll<=a.options.slidesToShow?a.options.slidesToScroll:a.options.slidesToShow;else if(a.options.centerMode===!0)d=a.slideCount;else for(;b<a.slideCount;)++d,b=c+a.options.slidesToScroll,c+=a.options.slidesToScroll<=a.options.slidesToShow?a.options.slidesToScroll:a.options.slidesToShow;return d-1},b.prototype.getLeft=function(a){var c,d,f,b=this,e=0;return b.slideOffset=0,d=b.$slides.first().outerHeight(!0),b.options.infinite===!0?(b.slideCount>b.options.slidesToShow&&(b.slideOffset=b.slideWidth*b.options.slidesToShow*-1,e=d*b.options.slidesToShow*-1),b.slideCount%b.options.slidesToScroll!==0&&a+b.options.slidesToScroll>b.slideCount&&b.slideCount>b.options.slidesToShow&&(a>b.slideCount?(b.slideOffset=(b.options.slidesToShow-(a-b.slideCount))*b.slideWidth*-1,e=(b.options.slidesToShow-(a-b.slideCount))*d*-1):(b.slideOffset=b.slideCount%b.options.slidesToScroll*b.slideWidth*-1,e=b.slideCount%b.options.slidesToScroll*d*-1))):a+b.options.slidesToShow>b.slideCount&&(b.slideOffset=(a+b.options.slidesToShow-b.slideCount)*b.slideWidth,e=(a+b.options.slidesToShow-b.slideCount)*d),b.slideCount<=b.options.slidesToShow&&(b.slideOffset=0,e=0),b.options.centerMode===!0&&b.options.infinite===!0?b.slideOffset+=b.slideWidth*Math.floor(b.options.slidesToShow/2)-b.slideWidth:b.options.centerMode===!0&&(b.slideOffset=0,b.slideOffset+=b.slideWidth*Math.floor(b.options.slidesToShow/2)),c=b.options.vertical===!1?a*b.slideWidth*-1+b.slideOffset:a*d*-1+e,b.options.variableWidth===!0&&(f=b.slideCount<=b.options.slidesToShow||b.options.infinite===!1?b.$slideTrack.children(".slick-slide").eq(a):b.$slideTrack.children(".slick-slide").eq(a+b.options.slidesToShow),c=b.options.rtl===!0?f[0]?-1*(b.$slideTrack.width()-f[0].offsetLeft-f.width()):0:f[0]?-1*f[0].offsetLeft:0,b.options.centerMode===!0&&(f=b.slideCount<=b.options.slidesToShow||b.options.infinite===!1?b.$slideTrack.children(".slick-slide").eq(a):b.$slideTrack.children(".slick-slide").eq(a+b.options.slidesToShow+1),c=b.options.rtl===!0?f[0]?-1*(b.$slideTrack.width()-f[0].offsetLeft-f.width()):0:f[0]?-1*f[0].offsetLeft:0,c+=(b.$list.width()-f.outerWidth())/2)),c},b.prototype.getOption=b.prototype.slickGetOption=function(a){var b=this;return b.options[a]},b.prototype.getNavigableIndexes=function(){var e,a=this,b=0,c=0,d=[];for(a.options.infinite===!1?e=a.slideCount:(b=-1*a.options.slidesToScroll,c=-1*a.options.slidesToScroll,e=2*a.slideCount);e>b;)d.push(b),b=c+a.options.slidesToScroll,c+=a.options.slidesToScroll<=a.options.slidesToShow?a.options.slidesToScroll:a.options.slidesToShow;return d},b.prototype.getSlick=function(){return this},b.prototype.getSlideCount=function(){var c,d,e,b=this;return e=b.options.centerMode===!0?b.slideWidth*Math.floor(b.options.slidesToShow/2):0,b.options.swipeToSlide===!0?(b.$slideTrack.find(".slick-slide").each(function(c,f){return f.offsetLeft-e+a(f).outerWidth()/2>-1*b.swipeLeft?(d=f,!1):void 0}),c=Math.abs(a(d).attr("data-slick-index")-b.currentSlide)||1):b.options.slidesToScroll},b.prototype.goTo=b.prototype.slickGoTo=function(a,b){var c=this;c.changeSlide({data:{message:"index",index:parseInt(a)}},b)},b.prototype.init=function(b){var c=this;a(c.$slider).hasClass("slick-initialized")||(a(c.$slider).addClass("slick-initialized"),c.buildRows(),c.buildOut(),c.setProps(),c.startLoad(),c.loadSlider(),c.initializeEvents(),c.updateArrows(),c.updateDots()),b&&c.$slider.trigger("init",[c]),c.options.accessibility===!0&&c.initADA()},b.prototype.initArrowEvents=function(){var a=this;a.options.arrows===!0&&a.slideCount>a.options.slidesToShow&&(a.$prevArrow.on("click.slick",{message:"previous"},a.changeSlide),a.$nextArrow.on("click.slick",{message:"next"},a.changeSlide))},b.prototype.initDotEvents=function(){var b=this;b.options.dots===!0&&b.slideCount>b.options.slidesToShow&&a("li",b.$dots).on("click.slick",{message:"index"},b.changeSlide),b.options.dots===!0&&b.options.pauseOnDotsHover===!0&&b.options.autoplay===!0&&a("li",b.$dots).on("mouseenter.slick",a.proxy(b.setPaused,b,!0)).on("mouseleave.slick",a.proxy(b.setPaused,b,!1))},b.prototype.initializeEvents=function(){var b=this;b.initArrowEvents(),b.initDotEvents(),b.$list.on("touchstart.slick mousedown.slick",{action:"start"},b.swipeHandler),b.$list.on("touchmove.slick mousemove.slick",{action:"move"},b.swipeHandler),b.$list.on("touchend.slick mouseup.slick",{action:"end"},b.swipeHandler),b.$list.on("touchcancel.slick mouseleave.slick",{action:"end"},b.swipeHandler),b.$list.on("click.slick",b.clickHandler),a(document).on(b.visibilityChange,a.proxy(b.visibility,b)),b.$list.on("mouseenter.slick",a.proxy(b.setPaused,b,!0)),b.$list.on("mouseleave.slick",a.proxy(b.setPaused,b,!1)),b.options.accessibility===!0&&b.$list.on("keydown.slick",b.keyHandler),b.options.focusOnSelect===!0&&a(b.$slideTrack).children().on("click.slick",b.selectHandler),a(window).on("orientationchange.slick.slick-"+b.instanceUid,a.proxy(b.orientationChange,b)),a(window).on("resize.slick.slick-"+b.instanceUid,a.proxy(b.resize,b)),a("[draggable!=true]",b.$slideTrack).on("dragstart",b.preventDefault),a(window).on("load.slick.slick-"+b.instanceUid,b.setPosition),a(document).on("ready.slick.slick-"+b.instanceUid,b.setPosition)},b.prototype.initUI=function(){var a=this;a.options.arrows===!0&&a.slideCount>a.options.slidesToShow&&(a.$prevArrow.show(),a.$nextArrow.show()),a.options.dots===!0&&a.slideCount>a.options.slidesToShow&&a.$dots.show(),a.options.autoplay===!0&&a.autoPlay()},b.prototype.keyHandler=function(a){var b=this;a.target.tagName.match("TEXTAREA|INPUT|SELECT")||(37===a.keyCode&&b.options.accessibility===!0?b.changeSlide({data:{message:"previous"}}):39===a.keyCode&&b.options.accessibility===!0&&b.changeSlide({data:{message:"next"}}))},b.prototype.lazyLoad=function(){function g(b){a("img[data-lazy]",b).each(function(){var b=a(this),c=a(this).attr("data-lazy"),d=document.createElement("img");d.onload=function(){b.animate({opacity:0},100,function(){b.attr("src",c).animate({opacity:1},200,function(){b.removeAttr("data-lazy").removeClass("slick-loading")})})},d.src=c})}var c,d,e,f,b=this;b.options.centerMode===!0?b.options.infinite===!0?(e=b.currentSlide+(b.options.slidesToShow/2+1),f=e+b.options.slidesToShow+2):(e=Math.max(0,b.currentSlide-(b.options.slidesToShow/2+1)),f=2+(b.options.slidesToShow/2+1)+b.currentSlide):(e=b.options.infinite?b.options.slidesToShow+b.currentSlide:b.currentSlide,f=e+b.options.slidesToShow,b.options.fade===!0&&(e>0&&e--,f<=b.slideCount&&f++)),c=b.$slider.find(".slick-slide").slice(e,f),g(c),b.slideCount<=b.options.slidesToShow?(d=b.$slider.find(".slick-slide"),g(d)):b.currentSlide>=b.slideCount-b.options.slidesToShow?(d=b.$slider.find(".slick-cloned").slice(0,b.options.slidesToShow),g(d)):0===b.currentSlide&&(d=b.$slider.find(".slick-cloned").slice(-1*b.options.slidesToShow),g(d))},b.prototype.loadSlider=function(){var a=this;a.setPosition(),a.$slideTrack.css({opacity:1}),a.$slider.removeClass("slick-loading"),a.initUI(),"progressive"===a.options.lazyLoad&&a.progressiveLazyLoad()},b.prototype.next=b.prototype.slickNext=function(){var a=this;a.changeSlide({data:{message:"next"}})},b.prototype.orientationChange=function(){var a=this;a.checkResponsive(),a.setPosition()},b.prototype.pause=b.prototype.slickPause=function(){var a=this;a.autoPlayClear(),a.paused=!0},b.prototype.play=b.prototype.slickPlay=function(){var a=this;a.paused=!1,a.autoPlay()},b.prototype.postSlide=function(a){var b=this;b.$slider.trigger("afterChange",[b,a]),b.animating=!1,b.setPosition(),b.swipeLeft=null,b.options.autoplay===!0&&b.paused===!1&&b.autoPlay(),b.options.accessibility===!0&&b.initADA()},b.prototype.prev=b.prototype.slickPrev=function(){var a=this;a.changeSlide({data:{message:"previous"}})},b.prototype.preventDefault=function(a){a.preventDefault()},b.prototype.progressiveLazyLoad=function(){var c,d,b=this;c=a("img[data-lazy]",b.$slider).length,c>0&&(d=a("img[data-lazy]",b.$slider).first(),d.attr("src",null),d.attr("src",d.attr("data-lazy")).removeClass("slick-loading").load(function(){d.removeAttr("data-lazy"),b.progressiveLazyLoad(),b.options.adaptiveHeight===!0&&b.setPosition()}).error(function(){d.removeAttr("data-lazy"),b.progressiveLazyLoad()}))},b.prototype.refresh=function(b){var d,e,c=this;e=c.slideCount-c.options.slidesToShow,c.options.infinite||(c.slideCount<=c.options.slidesToShow?c.currentSlide=0:c.currentSlide>e&&(c.currentSlide=e)),d=c.currentSlide,c.destroy(!0),a.extend(c,c.initials,{currentSlide:d}),c.init(),b||c.changeSlide({data:{message:"index",index:d}},!1)},b.prototype.registerBreakpoints=function(){var c,d,e,b=this,f=b.options.responsive||null;if("array"===a.type(f)&&f.length){b.respondTo=b.options.respondTo||"window";for(c in f)if(e=b.breakpoints.length-1,d=f[c].breakpoint,f.hasOwnProperty(c)){for(;e>=0;)b.breakpoints[e]&&b.breakpoints[e]===d&&b.breakpoints.splice(e,1),e--;b.breakpoints.push(d),b.breakpointSettings[d]=f[c].settings}b.breakpoints.sort(function(a,c){return b.options.mobileFirst?a-c:c-a})}},b.prototype.reinit=function(){var b=this;b.$slides=b.$slideTrack.children(b.options.slide).addClass("slick-slide"),b.slideCount=b.$slides.length,b.currentSlide>=b.slideCount&&0!==b.currentSlide&&(b.currentSlide=b.currentSlide-b.options.slidesToScroll),b.slideCount<=b.options.slidesToShow&&(b.currentSlide=0),b.registerBreakpoints(),b.setProps(),b.setupInfinite(),b.buildArrows(),b.updateArrows(),b.initArrowEvents(),b.buildDots(),b.updateDots(),b.initDotEvents(),b.checkResponsive(!1,!0),b.options.focusOnSelect===!0&&a(b.$slideTrack).children().on("click.slick",b.selectHandler),b.setSlideClasses(0),b.setPosition(),b.$slider.trigger("reInit",[b]),b.options.autoplay===!0&&b.focusHandler()},b.prototype.resize=function(){var b=this;a(window).width()!==b.windowWidth&&(clearTimeout(b.windowDelay),b.windowDelay=window.setTimeout(function(){b.windowWidth=a(window).width(),b.checkResponsive(),b.unslicked||b.setPosition()},50))},b.prototype.removeSlide=b.prototype.slickRemove=function(a,b,c){var d=this;return"boolean"==typeof a?(b=a,a=b===!0?0:d.slideCount-1):a=b===!0?--a:a,d.slideCount<1||0>a||a>d.slideCount-1?!1:(d.unload(),c===!0?d.$slideTrack.children().remove():d.$slideTrack.children(this.options.slide).eq(a).remove(),d.$slides=d.$slideTrack.children(this.options.slide),d.$slideTrack.children(this.options.slide).detach(),d.$slideTrack.append(d.$slides),d.$slidesCache=d.$slides,void d.reinit())},b.prototype.setCSS=function(a){var d,e,b=this,c={};b.options.rtl===!0&&(a=-a),d="left"==b.positionProp?Math.ceil(a)+"px":"0px",e="top"==b.positionProp?Math.ceil(a)+"px":"0px",c[b.positionProp]=a,b.transformsEnabled===!1?b.$slideTrack.css(c):(c={},b.cssTransitions===!1?(c[b.animType]="translate("+d+", "+e+")",b.$slideTrack.css(c)):(c[b.animType]="translate3d("+d+", "+e+", 0px)",b.$slideTrack.css(c)))},b.prototype.setDimensions=function(){var a=this;a.options.vertical===!1?a.options.centerMode===!0&&a.$list.css({padding:"0px "+a.options.centerPadding}):(a.$list.height(a.$slides.first().outerHeight(!0)*a.options.slidesToShow),a.options.centerMode===!0&&a.$list.css({padding:a.options.centerPadding+" 0px"})),a.listWidth=a.$list.width(),a.listHeight=a.$list.height(),a.options.vertical===!1&&a.options.variableWidth===!1?(a.slideWidth=Math.ceil(a.listWidth/a.options.slidesToShow),a.$slideTrack.width(Math.ceil(a.slideWidth*a.$slideTrack.children(".slick-slide").length))):a.options.variableWidth===!0?a.$slideTrack.width(5e3*a.slideCount):(a.slideWidth=Math.ceil(a.listWidth),a.$slideTrack.height(Math.ceil(a.$slides.first().outerHeight(!0)*a.$slideTrack.children(".slick-slide").length)));var b=a.$slides.first().outerWidth(!0)-a.$slides.first().width();a.options.variableWidth===!1&&a.$slideTrack.children(".slick-slide").width(a.slideWidth-b)},b.prototype.setFade=function(){var c,b=this;b.$slides.each(function(d,e){c=b.slideWidth*d*-1,b.options.rtl===!0?a(e).css({position:"relative",right:c,top:0,zIndex:b.options.zIndex-2,opacity:0}):a(e).css({position:"relative",left:c,top:0,zIndex:b.options.zIndex-2,opacity:0})}),b.$slides.eq(b.currentSlide).css({zIndex:b.options.zIndex-1,opacity:1})},b.prototype.setHeight=function(){var a=this;if(1===a.options.slidesToShow&&a.options.adaptiveHeight===!0&&a.options.vertical===!1){var b=a.$slides.eq(a.currentSlide).outerHeight(!0);a.$list.css("height",b)}},b.prototype.setOption=b.prototype.slickSetOption=function(b,c,d){var f,g,e=this;if("responsive"===b&&"array"===a.type(c))for(g in c)if("array"!==a.type(e.options.responsive))e.options.responsive=[c[g]];else{for(f=e.options.responsive.length-1;f>=0;)e.options.responsive[f].breakpoint===c[g].breakpoint&&e.options.responsive.splice(f,1),f--;e.options.responsive.push(c[g])}else e.options[b]=c;d===!0&&(e.unload(),e.reinit())},b.prototype.setPosition=function(){var a=this;a.setDimensions(),a.setHeight(),a.options.fade===!1?a.setCSS(a.getLeft(a.currentSlide)):a.setFade(),a.$slider.trigger("setPosition",[a])},b.prototype.setProps=function(){var a=this,b=document.body.style;a.positionProp=a.options.vertical===!0?"top":"left","top"===a.positionProp?a.$slider.addClass("slick-vertical"):a.$slider.removeClass("slick-vertical"),(void 0!==b.WebkitTransition||void 0!==b.MozTransition||void 0!==b.msTransition)&&a.options.useCSS===!0&&(a.cssTransitions=!0),a.options.fade&&("number"==typeof a.options.zIndex?a.options.zIndex<3&&(a.options.zIndex=3):a.options.zIndex=a.defaults.zIndex),void 0!==b.OTransform&&(a.animType="OTransform",a.transformType="-o-transform",a.transitionType="OTransition",void 0===b.perspectiveProperty&&void 0===b.webkitPerspective&&(a.animType=!1)),void 0!==b.MozTransform&&(a.animType="MozTransform",a.transformType="-moz-transform",a.transitionType="MozTransition",void 0===b.perspectiveProperty&&void 0===b.MozPerspective&&(a.animType=!1)),void 0!==b.webkitTransform&&(a.animType="webkitTransform",a.transformType="-webkit-transform",a.transitionType="webkitTransition",void 0===b.perspectiveProperty&&void 0===b.webkitPerspective&&(a.animType=!1)),void 0!==b.msTransform&&(a.animType="msTransform",a.transformType="-ms-transform",a.transitionType="msTransition",void 0===b.msTransform&&(a.animType=!1)),void 0!==b.transform&&a.animType!==!1&&(a.animType="transform",a.transformType="transform",a.transitionType="transition"),a.transformsEnabled=a.options.useTransform&&null!==a.animType&&a.animType!==!1},b.prototype.setSlideClasses=function(a){var c,d,e,f,b=this;d=b.$slider.find(".slick-slide").removeClass("slick-active slick-center slick-current").attr("aria-hidden","true"),b.$slides.eq(a).addClass("slick-current"),b.options.centerMode===!0?(c=Math.floor(b.options.slidesToShow/2),b.options.infinite===!0&&(a>=c&&a<=b.slideCount-1-c?b.$slides.slice(a-c,a+c+1).addClass("slick-active").attr("aria-hidden","false"):(e=b.options.slidesToShow+a,d.slice(e-c+1,e+c+2).addClass("slick-active").attr("aria-hidden","false")),0===a?d.eq(d.length-1-b.options.slidesToShow).addClass("slick-center"):a===b.slideCount-1&&d.eq(b.options.slidesToShow).addClass("slick-center")),b.$slides.eq(a).addClass("slick-center")):a>=0&&a<=b.slideCount-b.options.slidesToShow?b.$slides.slice(a,a+b.options.slidesToShow).addClass("slick-active").attr("aria-hidden","false"):d.length<=b.options.slidesToShow?d.addClass("slick-active").attr("aria-hidden","false"):(f=b.slideCount%b.options.slidesToShow,e=b.options.infinite===!0?b.options.slidesToShow+a:a,b.options.slidesToShow==b.options.slidesToScroll&&b.slideCount-a<b.options.slidesToShow?d.slice(e-(b.options.slidesToShow-f),e+f).addClass("slick-active").attr("aria-hidden","false"):d.slice(e,e+b.options.slidesToShow).addClass("slick-active").attr("aria-hidden","false")),"ondemand"===b.options.lazyLoad&&b.lazyLoad()},b.prototype.setupInfinite=function(){var c,d,e,b=this;if(b.options.fade===!0&&(b.options.centerMode=!1),b.options.infinite===!0&&b.options.fade===!1&&(d=null,b.slideCount>b.options.slidesToShow)){for(e=b.options.centerMode===!0?b.options.slidesToShow+1:b.options.slidesToShow,c=b.slideCount;c>b.slideCount-e;c-=1)d=c-1,a(b.$slides[d]).clone(!0).attr("id","").attr("data-slick-index",d-b.slideCount).prependTo(b.$slideTrack).addClass("slick-cloned");for(c=0;e>c;c+=1)d=c,a(b.$slides[d]).clone(!0).attr("id","").attr("data-slick-index",d+b.slideCount).appendTo(b.$slideTrack).addClass("slick-cloned");b.$slideTrack.find(".slick-cloned").find("[id]").each(function(){a(this).attr("id","")})}},b.prototype.setPaused=function(a){var b=this;b.options.autoplay===!0&&b.options.pauseOnHover===!0&&(b.paused=a,a?b.autoPlayClear():b.autoPlay())},b.prototype.selectHandler=function(b){var c=this,d=a(b.target).is(".slick-slide")?a(b.target):a(b.target).parents(".slick-slide"),e=parseInt(d.attr("data-slick-index"));return e||(e=0),c.slideCount<=c.options.slidesToShow?(c.setSlideClasses(e),void c.asNavFor(e)):void c.slideHandler(e)},b.prototype.slideHandler=function(a,b,c){var d,e,f,g,h=null,i=this;return b=b||!1,i.animating===!0&&i.options.waitForAnimate===!0||i.options.fade===!0&&i.currentSlide===a||i.slideCount<=i.options.slidesToShow?void 0:(b===!1&&i.asNavFor(a),d=a,h=i.getLeft(d),g=i.getLeft(i.currentSlide),i.currentLeft=null===i.swipeLeft?g:i.swipeLeft,i.options.infinite===!1&&i.options.centerMode===!1&&(0>a||a>i.getDotCount()*i.options.slidesToScroll)?void(i.options.fade===!1&&(d=i.currentSlide,c!==!0?i.animateSlide(g,function(){i.postSlide(d);
|
| 18 |
+
}):i.postSlide(d))):i.options.infinite===!1&&i.options.centerMode===!0&&(0>a||a>i.slideCount-i.options.slidesToScroll)?void(i.options.fade===!1&&(d=i.currentSlide,c!==!0?i.animateSlide(g,function(){i.postSlide(d)}):i.postSlide(d))):(i.options.autoplay===!0&&clearInterval(i.autoPlayTimer),e=0>d?i.slideCount%i.options.slidesToScroll!==0?i.slideCount-i.slideCount%i.options.slidesToScroll:i.slideCount+d:d>=i.slideCount?i.slideCount%i.options.slidesToScroll!==0?0:d-i.slideCount:d,i.animating=!0,i.$slider.trigger("beforeChange",[i,i.currentSlide,e]),f=i.currentSlide,i.currentSlide=e,i.setSlideClasses(i.currentSlide),i.updateDots(),i.updateArrows(),i.options.fade===!0?(c!==!0?(i.fadeSlideOut(f),i.fadeSlide(e,function(){i.postSlide(e)})):i.postSlide(e),void i.animateHeight()):void(c!==!0?i.animateSlide(h,function(){i.postSlide(e)}):i.postSlide(e))))},b.prototype.startLoad=function(){var a=this;a.options.arrows===!0&&a.slideCount>a.options.slidesToShow&&(a.$prevArrow.hide(),a.$nextArrow.hide()),a.options.dots===!0&&a.slideCount>a.options.slidesToShow&&a.$dots.hide(),a.$slider.addClass("slick-loading")},b.prototype.swipeDirection=function(){var a,b,c,d,e=this;return a=e.touchObject.startX-e.touchObject.curX,b=e.touchObject.startY-e.touchObject.curY,c=Math.atan2(b,a),d=Math.round(180*c/Math.PI),0>d&&(d=360-Math.abs(d)),45>=d&&d>=0?e.options.rtl===!1?"left":"right":360>=d&&d>=315?e.options.rtl===!1?"left":"right":d>=135&&225>=d?e.options.rtl===!1?"right":"left":e.options.verticalSwiping===!0?d>=35&&135>=d?"left":"right":"vertical"},b.prototype.swipeEnd=function(a){var c,b=this;if(b.dragging=!1,b.shouldClick=b.touchObject.swipeLength>10?!1:!0,void 0===b.touchObject.curX)return!1;if(b.touchObject.edgeHit===!0&&b.$slider.trigger("edge",[b,b.swipeDirection()]),b.touchObject.swipeLength>=b.touchObject.minSwipe)switch(b.swipeDirection()){case"left":c=b.options.swipeToSlide?b.checkNavigable(b.currentSlide+b.getSlideCount()):b.currentSlide+b.getSlideCount(),b.slideHandler(c),b.currentDirection=0,b.touchObject={},b.$slider.trigger("swipe",[b,"left"]);break;case"right":c=b.options.swipeToSlide?b.checkNavigable(b.currentSlide-b.getSlideCount()):b.currentSlide-b.getSlideCount(),b.slideHandler(c),b.currentDirection=1,b.touchObject={},b.$slider.trigger("swipe",[b,"right"])}else b.touchObject.startX!==b.touchObject.curX&&(b.slideHandler(b.currentSlide),b.touchObject={})},b.prototype.swipeHandler=function(a){var b=this;if(!(b.options.swipe===!1||"ontouchend"in document&&b.options.swipe===!1||b.options.draggable===!1&&-1!==a.type.indexOf("mouse")))switch(b.touchObject.fingerCount=a.originalEvent&&void 0!==a.originalEvent.touches?a.originalEvent.touches.length:1,b.touchObject.minSwipe=b.listWidth/b.options.touchThreshold,b.options.verticalSwiping===!0&&(b.touchObject.minSwipe=b.listHeight/b.options.touchThreshold),a.data.action){case"start":b.swipeStart(a);break;case"move":b.swipeMove(a);break;case"end":b.swipeEnd(a)}},b.prototype.swipeMove=function(a){var d,e,f,g,h,b=this;return h=void 0!==a.originalEvent?a.originalEvent.touches:null,!b.dragging||h&&1!==h.length?!1:(d=b.getLeft(b.currentSlide),b.touchObject.curX=void 0!==h?h[0].pageX:a.clientX,b.touchObject.curY=void 0!==h?h[0].pageY:a.clientY,b.touchObject.swipeLength=Math.round(Math.sqrt(Math.pow(b.touchObject.curX-b.touchObject.startX,2))),b.options.verticalSwiping===!0&&(b.touchObject.swipeLength=Math.round(Math.sqrt(Math.pow(b.touchObject.curY-b.touchObject.startY,2)))),e=b.swipeDirection(),"vertical"!==e?(void 0!==a.originalEvent&&b.touchObject.swipeLength>4&&a.preventDefault(),g=(b.options.rtl===!1?1:-1)*(b.touchObject.curX>b.touchObject.startX?1:-1),b.options.verticalSwiping===!0&&(g=b.touchObject.curY>b.touchObject.startY?1:-1),f=b.touchObject.swipeLength,b.touchObject.edgeHit=!1,b.options.infinite===!1&&(0===b.currentSlide&&"right"===e||b.currentSlide>=b.getDotCount()&&"left"===e)&&(f=b.touchObject.swipeLength*b.options.edgeFriction,b.touchObject.edgeHit=!0),b.options.vertical===!1?b.swipeLeft=d+f*g:b.swipeLeft=d+f*(b.$list.height()/b.listWidth)*g,b.options.verticalSwiping===!0&&(b.swipeLeft=d+f*g),b.options.fade===!0||b.options.touchMove===!1?!1:b.animating===!0?(b.swipeLeft=null,!1):void b.setCSS(b.swipeLeft)):void 0)},b.prototype.swipeStart=function(a){var c,b=this;return 1!==b.touchObject.fingerCount||b.slideCount<=b.options.slidesToShow?(b.touchObject={},!1):(void 0!==a.originalEvent&&void 0!==a.originalEvent.touches&&(c=a.originalEvent.touches[0]),b.touchObject.startX=b.touchObject.curX=void 0!==c?c.pageX:a.clientX,b.touchObject.startY=b.touchObject.curY=void 0!==c?c.pageY:a.clientY,void(b.dragging=!0))},b.prototype.unfilterSlides=b.prototype.slickUnfilter=function(){var a=this;null!==a.$slidesCache&&(a.unload(),a.$slideTrack.children(this.options.slide).detach(),a.$slidesCache.appendTo(a.$slideTrack),a.reinit())},b.prototype.unload=function(){var b=this;a(".slick-cloned",b.$slider).remove(),b.$dots&&b.$dots.remove(),b.$prevArrow&&b.htmlExpr.test(b.options.prevArrow)&&b.$prevArrow.remove(),b.$nextArrow&&b.htmlExpr.test(b.options.nextArrow)&&b.$nextArrow.remove(),b.$slides.removeClass("slick-slide slick-active slick-visible slick-current").attr("aria-hidden","true").css("width","")},b.prototype.unslick=function(a){var b=this;b.$slider.trigger("unslick",[b,a]),b.destroy()},b.prototype.updateArrows=function(){var b,a=this;b=Math.floor(a.options.slidesToShow/2),a.options.arrows===!0&&a.slideCount>a.options.slidesToShow&&!a.options.infinite&&(a.$prevArrow.removeClass("slick-disabled").attr("aria-disabled","false"),a.$nextArrow.removeClass("slick-disabled").attr("aria-disabled","false"),0===a.currentSlide?(a.$prevArrow.addClass("slick-disabled").attr("aria-disabled","true"),a.$nextArrow.removeClass("slick-disabled").attr("aria-disabled","false")):a.currentSlide>=a.slideCount-a.options.slidesToShow&&a.options.centerMode===!1?(a.$nextArrow.addClass("slick-disabled").attr("aria-disabled","true"),a.$prevArrow.removeClass("slick-disabled").attr("aria-disabled","false")):a.currentSlide>=a.slideCount-1&&a.options.centerMode===!0&&(a.$nextArrow.addClass("slick-disabled").attr("aria-disabled","true"),a.$prevArrow.removeClass("slick-disabled").attr("aria-disabled","false")))},b.prototype.updateDots=function(){var a=this;null!==a.$dots&&(a.$dots.find("li").removeClass("slick-active").attr("aria-hidden","true"),a.$dots.find("li").eq(Math.floor(a.currentSlide/a.options.slidesToScroll)).addClass("slick-active").attr("aria-hidden","false"))},b.prototype.visibility=function(){var a=this;document[a.hidden]?(a.paused=!0,a.autoPlayClear()):a.options.autoplay===!0&&(a.paused=!1,a.autoPlay())},b.prototype.initADA=function(){var b=this;b.$slides.add(b.$slideTrack.find(".slick-cloned")).attr({"aria-hidden":"true",tabindex:"-1"}).find("a, input, button, select").attr({tabindex:"-1"}),b.$slideTrack.attr("role","listbox"),b.$slides.not(b.$slideTrack.find(".slick-cloned")).each(function(c){a(this).attr({role:"option","aria-describedby":"slick-slide"+b.instanceUid+c})}),null!==b.$dots&&b.$dots.attr("role","tablist").find("li").each(function(c){a(this).attr({role:"presentation","aria-selected":"false","aria-controls":"navigation"+b.instanceUid+c,id:"slick-slide"+b.instanceUid+c})}).first().attr("aria-selected","true").end().find("button").attr("role","button").end().closest("div").attr("role","toolbar"),b.activateADA()},b.prototype.activateADA=function(){var a=this;a.$slideTrack.find(".slick-active").attr({"aria-hidden":"false"}).find("a, input, button, select").attr({tabindex:"0"})},b.prototype.focusHandler=function(){var b=this;b.$slider.on("focus.slick blur.slick","*",function(c){c.stopImmediatePropagation();var d=a(this);setTimeout(function(){b.isPlay&&(d.is(":focus")?(b.autoPlayClear(),b.paused=!0):(b.paused=!1,b.autoPlay()))},0)})},a.fn.slick=function(){var f,g,a=this,c=arguments[0],d=Array.prototype.slice.call(arguments,1),e=a.length;for(f=0;e>f;f++)if("object"==typeof c||"undefined"==typeof c?a[f].slick=new b(a[f],c):g=a[f].slick[c].apply(a[f].slick,d),"undefined"!=typeof g)return g;return a}});
|
assets/js/slick/slick.scss
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* Slider */
|
| 2 |
+
|
| 3 |
+
.slick-slider {
|
| 4 |
+
position: relative;
|
| 5 |
+
display: block;
|
| 6 |
+
-moz-box-sizing: border-box;
|
| 7 |
+
box-sizing: border-box;
|
| 8 |
+
-webkit-touch-callout: none;
|
| 9 |
+
-webkit-user-select: none;
|
| 10 |
+
-khtml-user-select: none;
|
| 11 |
+
-moz-user-select: none;
|
| 12 |
+
-ms-user-select: none;
|
| 13 |
+
user-select: none;
|
| 14 |
+
-ms-touch-action: pan-y;
|
| 15 |
+
touch-action: pan-y;
|
| 16 |
+
-webkit-tap-highlight-color: transparent;
|
| 17 |
+
}
|
| 18 |
+
.slick-list {
|
| 19 |
+
position: relative;
|
| 20 |
+
overflow: hidden;
|
| 21 |
+
display: block;
|
| 22 |
+
margin: 0;
|
| 23 |
+
padding: 0;
|
| 24 |
+
|
| 25 |
+
&:focus {
|
| 26 |
+
outline: none;
|
| 27 |
+
}
|
| 28 |
+
|
| 29 |
+
&.dragging {
|
| 30 |
+
cursor: pointer;
|
| 31 |
+
cursor: hand;
|
| 32 |
+
}
|
| 33 |
+
}
|
| 34 |
+
.slick-slider .slick-track,
|
| 35 |
+
.slick-slider .slick-list {
|
| 36 |
+
-webkit-transform: translate3d(0, 0, 0);
|
| 37 |
+
-moz-transform: translate3d(0, 0, 0);
|
| 38 |
+
-ms-transform: translate3d(0, 0, 0);
|
| 39 |
+
-o-transform: translate3d(0, 0, 0);
|
| 40 |
+
transform: translate3d(0, 0, 0);
|
| 41 |
+
}
|
| 42 |
+
|
| 43 |
+
.slick-track {
|
| 44 |
+
position: relative;
|
| 45 |
+
left: 0;
|
| 46 |
+
top: 0;
|
| 47 |
+
display: block;
|
| 48 |
+
|
| 49 |
+
&:before,
|
| 50 |
+
&:after {
|
| 51 |
+
content: "";
|
| 52 |
+
display: table;
|
| 53 |
+
}
|
| 54 |
+
|
| 55 |
+
&:after {
|
| 56 |
+
clear: both;
|
| 57 |
+
}
|
| 58 |
+
|
| 59 |
+
.slick-loading & {
|
| 60 |
+
visibility: hidden;
|
| 61 |
+
}
|
| 62 |
+
}
|
| 63 |
+
.slick-slide {
|
| 64 |
+
float: left;
|
| 65 |
+
height: 100%;
|
| 66 |
+
min-height: 1px;
|
| 67 |
+
[dir="rtl"] & {
|
| 68 |
+
float: right;
|
| 69 |
+
}
|
| 70 |
+
img {
|
| 71 |
+
display: block;
|
| 72 |
+
}
|
| 73 |
+
&.slick-loading img {
|
| 74 |
+
display: none;
|
| 75 |
+
}
|
| 76 |
+
|
| 77 |
+
display: none;
|
| 78 |
+
|
| 79 |
+
&.dragging img {
|
| 80 |
+
pointer-events: none;
|
| 81 |
+
}
|
| 82 |
+
|
| 83 |
+
.slick-initialized & {
|
| 84 |
+
display: block;
|
| 85 |
+
}
|
| 86 |
+
|
| 87 |
+
.slick-loading & {
|
| 88 |
+
visibility: hidden;
|
| 89 |
+
}
|
| 90 |
+
|
| 91 |
+
.slick-vertical & {
|
| 92 |
+
display: block;
|
| 93 |
+
height: auto;
|
| 94 |
+
border: 1px solid transparent;
|
| 95 |
+
}
|
| 96 |
+
}
|
| 97 |
+
.slick-arrow.slick-hidden {
|
| 98 |
+
display: none;
|
| 99 |
+
}
|
classes/class-perfect-woocommerce-brands.php
ADDED
|
@@ -0,0 +1,381 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
namespace Perfect_Woocommerce_Brands;
|
| 3 |
+
|
| 4 |
+
defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
|
| 5 |
+
|
| 6 |
+
class Perfect_Woocommerce_Brands{
|
| 7 |
+
|
| 8 |
+
function __construct(){
|
| 9 |
+
add_action('woocommerce_init', array($this,'register_brands_taxonomy'), 10, 0);
|
| 10 |
+
add_action('init',array($this,'add_brands_metafields'));
|
| 11 |
+
add_action('pwb-brand_add_form_fields', array($this,'add_brands_metafields_form') );
|
| 12 |
+
add_action('pwb-brand_edit_form_fields', array($this,'add_brands_metafields_form_edit') );
|
| 13 |
+
add_action('edit_pwb-brand', array($this,'add_brands_metafields_save') );
|
| 14 |
+
add_action('create_pwb-brand', array($this,'add_brands_metafields_save') );
|
| 15 |
+
add_filter('manage_edit-pwb-brand_columns', array($this,'brand_taxonomy_columns_head'));
|
| 16 |
+
add_filter('manage_pwb-brand_custom_column', array($this,'brand_taxonomy_columns' ), 10, 3);
|
| 17 |
+
add_action('admin_enqueue_scripts', array($this,'register_admin_scripts'));
|
| 18 |
+
add_action('woocommerce_single_product_summary', array($this,'action_woocommerce_single_product_summary'), 45);
|
| 19 |
+
add_action('widgets_init', function(){register_widget('\Perfect_Woocommerce_Brands\Pwb_Dropdown_Widget');});
|
| 20 |
+
add_action('widgets_init', function(){register_widget('\Perfect_Woocommerce_Brands\Pwb_List_Widget');});
|
| 21 |
+
if ( !is_admin() ) {
|
| 22 |
+
add_action('init', array($this,'register_frontend_scripts'));
|
| 23 |
+
}
|
| 24 |
+
add_shortcode( 'pwb-carousel', array('\Perfect_Woocommerce_Brands\Pwb_Carousel_Shortcode','carousel_shortcode') );
|
| 25 |
+
add_shortcode( 'pwb-all-brands', array('\Perfect_Woocommerce_Brands\Pwb_All_Brands_Shortcode','all_brands_shortcode') );
|
| 26 |
+
add_shortcode( 'pwb-brand', array('\Perfect_Woocommerce_Brands\Pwb_Brand_Shortcode','brand_shortcode') );
|
| 27 |
+
if(is_plugin_active('js_composer/js_composer.php')){
|
| 28 |
+
add_action('vc_before_init', array($this,'vc_map_shortcodes') );
|
| 29 |
+
}
|
| 30 |
+
}
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
/*
|
| 36 |
+
* Maps shortcode (for visual composer plugin)
|
| 37 |
+
*
|
| 38 |
+
* @since 1.0
|
| 39 |
+
* @link https://vc.wpbakery.com/
|
| 40 |
+
* @return mixed
|
| 41 |
+
*/
|
| 42 |
+
public function vc_map_shortcodes(){
|
| 43 |
+
$available_image_sizes_adapted = array();
|
| 44 |
+
$available_image_sizes = get_intermediate_image_sizes();
|
| 45 |
+
|
| 46 |
+
foreach($available_image_sizes as $image_size){
|
| 47 |
+
$available_image_sizes_adapted[$image_size] = $image_size;
|
| 48 |
+
}
|
| 49 |
+
|
| 50 |
+
vc_map(array(
|
| 51 |
+
"name" => __( "PWB Brands carousel", "perfect-woocommerce-brands" ),
|
| 52 |
+
"description" => __( "Brands carousel", "perfect-woocommerce-brands" ),
|
| 53 |
+
"base" => "pwb-carousel",
|
| 54 |
+
"class" => "",
|
| 55 |
+
"icon" => PWB_PLUGIN.'/assets/img/icon_pwb.jpg',
|
| 56 |
+
"category" => "WooCommerce",
|
| 57 |
+
"params" => array(
|
| 58 |
+
array(
|
| 59 |
+
"type" => "textfield",
|
| 60 |
+
"holder" => "div",
|
| 61 |
+
"heading" => __( "Items", "perfect-woocommerce-brands" ),
|
| 62 |
+
"param_name" => "items",
|
| 63 |
+
"value" => "10",
|
| 64 |
+
"description" => __( "Number of items to load", "perfect-woocommerce-brands" )
|
| 65 |
+
),
|
| 66 |
+
array(
|
| 67 |
+
"type" => "textfield",
|
| 68 |
+
"holder" => "div",
|
| 69 |
+
"heading" => __( "Items to show", "perfect-woocommerce-brands" ),
|
| 70 |
+
"param_name" => "items_to_show",
|
| 71 |
+
"value" => "5",
|
| 72 |
+
"description" => __( "Number of items to show", "perfect-woocommerce-brands" )
|
| 73 |
+
),
|
| 74 |
+
array(
|
| 75 |
+
"type" => "textfield",
|
| 76 |
+
"holder" => "div",
|
| 77 |
+
"heading" => __( "Items to scroll", "perfect-woocommerce-brands" ),
|
| 78 |
+
"param_name" => "items_to_scroll",
|
| 79 |
+
"value" => "1",
|
| 80 |
+
"description" => __( "Number of items to scroll", "perfect-woocommerce-brands" )
|
| 81 |
+
),
|
| 82 |
+
array(
|
| 83 |
+
"type" => "checkbox",
|
| 84 |
+
"holder" => "div",
|
| 85 |
+
"heading" => __( "Autoplay", "perfect-woocommerce-brands" ),
|
| 86 |
+
"param_name" => "autoplay",
|
| 87 |
+
"description" => __( "Autoplay carousel", "perfect-woocommerce-brands" )
|
| 88 |
+
),
|
| 89 |
+
array(
|
| 90 |
+
"type" => "dropdown",
|
| 91 |
+
"heading" => __( "Brand logo size", "perfect-woocommerce-brands" ),
|
| 92 |
+
"param_name" => "image_size",
|
| 93 |
+
"admin_label" => true,
|
| 94 |
+
"value" => $available_image_sizes_adapted
|
| 95 |
+
)
|
| 96 |
+
)
|
| 97 |
+
|
| 98 |
+
|
| 99 |
+
));
|
| 100 |
+
|
| 101 |
+
vc_map(array(
|
| 102 |
+
"name" => __( "PWB All brands", "perfect-woocommerce-brands" ),
|
| 103 |
+
"description" => __( "Show all brands", "perfect-woocommerce-brands" ),
|
| 104 |
+
"base" => "pwb-all-brands",
|
| 105 |
+
"class" => "",
|
| 106 |
+
"icon" => PWB_PLUGIN.'/assets/img/icon_pwb.jpg',
|
| 107 |
+
"category" => "WooCommerce",
|
| 108 |
+
|
| 109 |
+
"params" => array(
|
| 110 |
+
array(
|
| 111 |
+
"type" => "textfield",
|
| 112 |
+
"holder" => "div",
|
| 113 |
+
"heading" => __( "Brands per page", "perfect-woocommerce-brands" ),
|
| 114 |
+
"param_name" => "per_page",
|
| 115 |
+
"value" => "10",
|
| 116 |
+
"description" => __( "Show x brands per page", "perfect-woocommerce-brands" )
|
| 117 |
+
),
|
| 118 |
+
array(
|
| 119 |
+
"type" => "dropdown",
|
| 120 |
+
"heading" => __( "Brand logo size", "perfect-woocommerce-brands" ),
|
| 121 |
+
"param_name" => "image_size",
|
| 122 |
+
"admin_label" => true,
|
| 123 |
+
"value" => $available_image_sizes_adapted
|
| 124 |
+
)
|
| 125 |
+
)
|
| 126 |
+
|
| 127 |
+
|
| 128 |
+
));
|
| 129 |
+
|
| 130 |
+
vc_map(array(
|
| 131 |
+
"name" => __( "PWB brand", "perfect-woocommerce-brands" ),
|
| 132 |
+
"description" => __( "Show brand for a specific product", "perfect-woocommerce-brands" ),
|
| 133 |
+
"base" => "pwb-brand",
|
| 134 |
+
"class" => "",
|
| 135 |
+
"icon" => PWB_PLUGIN.'/assets/img/icon_pwb.jpg',
|
| 136 |
+
"category" => "WooCommerce",
|
| 137 |
+
|
| 138 |
+
"params" => array(
|
| 139 |
+
array(
|
| 140 |
+
"type" => "textfield",
|
| 141 |
+
"holder" => "div",
|
| 142 |
+
"heading" => __( "Product id", "perfect-woocommerce-brands" ),
|
| 143 |
+
"param_name" => "product_id",
|
| 144 |
+
"value" => null,
|
| 145 |
+
"description" => __( "Product id (post id)", "perfect-woocommerce-brands" )
|
| 146 |
+
),
|
| 147 |
+
array(
|
| 148 |
+
"type" => "dropdown",
|
| 149 |
+
"heading" => __( "Brand logo size", "perfect-woocommerce-brands" ),
|
| 150 |
+
"param_name" => "image_size",
|
| 151 |
+
"admin_label" => true,
|
| 152 |
+
"value" => $available_image_sizes_adapted
|
| 153 |
+
)
|
| 154 |
+
|
| 155 |
+
)
|
| 156 |
+
|
| 157 |
+
|
| 158 |
+
));
|
| 159 |
+
}
|
| 160 |
+
|
| 161 |
+
public function action_woocommerce_single_product_summary() {
|
| 162 |
+
$brands = wp_get_post_terms( get_the_ID(), 'pwb-brand');
|
| 163 |
+
|
| 164 |
+
if(!is_wp_error($brands)){
|
| 165 |
+
foreach($brands as $brand){
|
| 166 |
+
$brand_link = get_term_link ( $brand->term_id, 'pwb-brand' );
|
| 167 |
+
$attachment_id = get_term_meta( $brand->term_id, 'pwb_brand_image', 1 );
|
| 168 |
+
|
| 169 |
+
$image_size = 'thumbnail';
|
| 170 |
+
$image_size_selected = get_option('wc_pwb_admin_tab_brand_logo_size');
|
| 171 |
+
if($image_size_selected!=false){
|
| 172 |
+
$image_size = $image_size_selected;
|
| 173 |
+
}
|
| 174 |
+
|
| 175 |
+
$attachment_html = wp_get_attachment_image($attachment_id,$image_size);
|
| 176 |
+
if(!empty($attachment_html)){
|
| 177 |
+
echo '<a href="'.$brand_link.'" title="'.__( 'View brand', 'perfect-woocommerce-brands' ).'">'.$attachment_html.'</a>';
|
| 178 |
+
}else{
|
| 179 |
+
echo '<a href="'.$brand_link.'" title="'.__( 'View brand', 'perfect-woocommerce-brands' ).'">'.$brand->name.'</a>';
|
| 180 |
+
}
|
| 181 |
+
}
|
| 182 |
+
}
|
| 183 |
+
}
|
| 184 |
+
|
| 185 |
+
public function register_frontend_scripts(){
|
| 186 |
+
|
| 187 |
+
wp_register_script(
|
| 188 |
+
'pwb_slick_lib',
|
| 189 |
+
PWB_PLUGIN . '/assets/js/slick/slick.min.js',
|
| 190 |
+
array('jquery'),
|
| 191 |
+
'1.5.9',
|
| 192 |
+
true
|
| 193 |
+
);
|
| 194 |
+
wp_enqueue_script('pwb_frontend_functions');
|
| 195 |
+
|
| 196 |
+
wp_enqueue_style (
|
| 197 |
+
'pwb_slick_lib',
|
| 198 |
+
PWB_PLUGIN . '/assets/js/slick/slick.css',
|
| 199 |
+
array(),
|
| 200 |
+
'1.5.9',
|
| 201 |
+
'all'
|
| 202 |
+
);
|
| 203 |
+
|
| 204 |
+
wp_enqueue_style (
|
| 205 |
+
'pwb_frontend_styles',
|
| 206 |
+
PWB_PLUGIN . '/assets/css/styles-frontend.css',
|
| 207 |
+
array('pwb_slick_lib'),
|
| 208 |
+
'1.1',
|
| 209 |
+
'all'
|
| 210 |
+
);
|
| 211 |
+
|
| 212 |
+
wp_register_script(
|
| 213 |
+
'pwb_frontend_functions',
|
| 214 |
+
PWB_PLUGIN . '/assets/js/pwb_frontend_functions.js',
|
| 215 |
+
array('jquery','pwb_slick_lib'),
|
| 216 |
+
'1.1',
|
| 217 |
+
true
|
| 218 |
+
);
|
| 219 |
+
wp_enqueue_script('pwb_frontend_functions');
|
| 220 |
+
|
| 221 |
+
}
|
| 222 |
+
|
| 223 |
+
public function register_admin_scripts($hook){
|
| 224 |
+
$screen = get_current_screen();
|
| 225 |
+
|
| 226 |
+
wp_register_style('pwb_styles_brands', plugins_url('perfect-woocommerce-brands/assets/css/styles-admin.css'), array(), '1.1');
|
| 227 |
+
wp_register_script('pwb_brands_js', plugins_url('perfect-woocommerce-brands/assets/js/pwb_admin_functions.js'), array('jquery'), '1.1', true);
|
| 228 |
+
|
| 229 |
+
if ($hook == 'edit-tags.php' && $screen->taxonomy == 'pwb-brand' || $hook == 'term.php' && $screen->taxonomy == 'pwb-brand') {
|
| 230 |
+
wp_enqueue_style('pwb_styles_brands');
|
| 231 |
+
wp_enqueue_media();
|
| 232 |
+
wp_enqueue_script('pwb_brands_js');
|
| 233 |
+
}else{
|
| 234 |
+
return;
|
| 235 |
+
}
|
| 236 |
+
|
| 237 |
+
}
|
| 238 |
+
|
| 239 |
+
public function register_brands_taxonomy(){
|
| 240 |
+
$labels = array(
|
| 241 |
+
'name' => __( 'Brands', 'perfect-woocommerce-brands' ),
|
| 242 |
+
'singular_name' => __( 'Brand', 'perfect-woocommerce-brands' ),
|
| 243 |
+
'menu_name' => __( 'Brands', 'perfect-woocommerce-brands' ),
|
| 244 |
+
'all_items' => __( 'All Brands', 'perfect-woocommerce-brands' ),
|
| 245 |
+
'edit_item' => __( 'Edit Brand', 'perfect-woocommerce-brands' ),
|
| 246 |
+
'view_item' => __( 'View Brand', 'perfect-woocommerce-brands' ),
|
| 247 |
+
'update_item' => __( 'Update Brand', 'perfect-woocommerce-brands' ),
|
| 248 |
+
'add_new_item' => __( 'Add New Brand', 'perfect-woocommerce-brands' ),
|
| 249 |
+
'new_item_name' => __( 'New Brand Name', 'perfect-woocommerce-brands' ),
|
| 250 |
+
'parent_item' => __( 'Parent Brand', 'perfect-woocommerce-brands' ),
|
| 251 |
+
'parent_item_colon' => __( 'Parent Brand:', 'perfect-woocommerce-brands' ),
|
| 252 |
+
'search_items' => __( 'Search Brands', 'perfect-woocommerce-brands' ),
|
| 253 |
+
'popular_items' => __( 'Popular Brands', 'perfect-woocommerce-brands' ),
|
| 254 |
+
'separate_items_with_commas' => __( 'Separate brands with commas', 'perfect-woocommerce-brands' ),
|
| 255 |
+
'add_or_remove_items' => __( 'Add or remove brands', 'perfect-woocommerce-brands' ),
|
| 256 |
+
'choose_from_most_used' => __( 'Choose from the most used brands', 'perfect-woocommerce-brands' ),
|
| 257 |
+
'not_found' => __( 'No brands found', 'perfect-woocommerce-brands' )
|
| 258 |
+
);
|
| 259 |
+
|
| 260 |
+
$new_slug = get_option('wc_pwb_admin_tab_slug');
|
| 261 |
+
$old_slug = get_option('old_wc_pwb_admin_tab_slug');
|
| 262 |
+
|
| 263 |
+
$new_slug = ($new_slug!=false) ? $new_slug : 'brand';
|
| 264 |
+
$old_slug = ($old_slug!=false) ? $old_slug : 'null';
|
| 265 |
+
|
| 266 |
+
$args = array(
|
| 267 |
+
'hierarchical' => true,
|
| 268 |
+
'labels' => $labels,
|
| 269 |
+
'show_ui' => true,
|
| 270 |
+
'query_var' => true,
|
| 271 |
+
'public' => true,
|
| 272 |
+
'show_admin_column' => true,
|
| 273 |
+
'rewrite' => array(
|
| 274 |
+
'slug' => $new_slug,
|
| 275 |
+
'hierarchical' => true,
|
| 276 |
+
'ep_mask' => EP_PERMALINK
|
| 277 |
+
)
|
| 278 |
+
);
|
| 279 |
+
|
| 280 |
+
register_taxonomy( 'pwb-brand', array( 'product' ), $args );
|
| 281 |
+
|
| 282 |
+
if($new_slug != false && $old_slug!= false && $new_slug != $old_slug){
|
| 283 |
+
flush_rewrite_rules();
|
| 284 |
+
update_option( 'old_wc_pwb_admin_tab_slug', $new_slug );
|
| 285 |
+
}
|
| 286 |
+
|
| 287 |
+
}
|
| 288 |
+
|
| 289 |
+
public function add_brands_metafields(){
|
| 290 |
+
register_meta( 'term', 'pwb_brand_image', array($this,'add_brands_metafields_sanitize') );
|
| 291 |
+
}
|
| 292 |
+
|
| 293 |
+
public function add_brands_metafields_sanitize($brand_img){
|
| 294 |
+
return $brand_img;
|
| 295 |
+
}
|
| 296 |
+
|
| 297 |
+
public function add_brands_metafields_form(){
|
| 298 |
+
ob_start();
|
| 299 |
+
?>
|
| 300 |
+
<div class="form-field pwb_brand_cont">
|
| 301 |
+
<label for="pwb_brand_image"><?php _e( 'Brand logo', 'perfect-woocommerce-brands' ); ?></label>
|
| 302 |
+
<input type="text" name="pwb_brand_image" id="pwb_brand_image" value="" >
|
| 303 |
+
<a href="#" id="pwb_brand_image_select" class="button"><?php _e('Select image','perfect-woocommerce-brands');?></a>
|
| 304 |
+
<?php echo wp_nonce_field( basename( __FILE__ ), 'pwb_brand_image_nonce' );?>
|
| 305 |
+
</div>
|
| 306 |
+
<?php
|
| 307 |
+
echo ob_get_clean();
|
| 308 |
+
}
|
| 309 |
+
|
| 310 |
+
public function add_brands_metafields_form_edit($term){
|
| 311 |
+
$term_value = get_term_meta( $term->term_id, 'pwb_brand_image', true );
|
| 312 |
+
ob_start();
|
| 313 |
+
?>
|
| 314 |
+
<table class="form-table pwb_brand_cont">
|
| 315 |
+
<tr>
|
| 316 |
+
<th>
|
| 317 |
+
<label for="pwb_brand_image"><?php _e( 'Brand logo', 'perfect-woocommerce-brands' ); ?></label>
|
| 318 |
+
</th>
|
| 319 |
+
<td>
|
| 320 |
+
<input type="text" name="pwb_brand_image" id="pwb_brand_image" value="<?php echo $term_value;?>" >
|
| 321 |
+
<a href="#" id="pwb_brand_image_select" class="button"><?php _e('Select image','perfect-woocommerce-brands');?></a>
|
| 322 |
+
<div id="pwb_brand_image_result"><?php echo wp_get_attachment_image ( $term_value, array('90','90'), false );?></div>
|
| 323 |
+
<?php echo wp_nonce_field( basename( __FILE__ ), 'pwb_brand_image_nonce' );?>
|
| 324 |
+
</td>
|
| 325 |
+
</tr>
|
| 326 |
+
</table>
|
| 327 |
+
<?php
|
| 328 |
+
echo ob_get_clean();
|
| 329 |
+
}
|
| 330 |
+
|
| 331 |
+
public function add_brands_metafields_save($term_id){
|
| 332 |
+
|
| 333 |
+
if ( ! isset( $_POST['pwb_brand_image_nonce'] ) || ! wp_verify_nonce( $_POST['pwb_brand_image_nonce'], basename( __FILE__ ) ) )
|
| 334 |
+
return;
|
| 335 |
+
|
| 336 |
+
$old_img = get_term_meta( $term_id, 'pwb_brand_image', true );
|
| 337 |
+
$new_img = isset( $_POST['pwb_brand_image'] ) ? $_POST['pwb_brand_image'] : '';
|
| 338 |
+
|
| 339 |
+
if ( $old_img && '' === $new_img )
|
| 340 |
+
delete_term_meta( $term_id, 'pwb_brand_image' );
|
| 341 |
+
|
| 342 |
+
else if ( $old_img !== $new_img )
|
| 343 |
+
update_term_meta( $term_id, 'pwb_brand_image', $new_img );
|
| 344 |
+
}
|
| 345 |
+
|
| 346 |
+
public function brand_taxonomy_columns_head($defaults) {
|
| 347 |
+
$newColumns = array(
|
| 348 |
+
'cb' => $defaults['cb'],
|
| 349 |
+
'logo' => __( 'Logo', 'perfect-woocommerce-brands' )
|
| 350 |
+
);
|
| 351 |
+
|
| 352 |
+
unset($defaults['description']);
|
| 353 |
+
unset($defaults['cb']);
|
| 354 |
+
|
| 355 |
+
return array_merge($newColumns,$defaults);
|
| 356 |
+
}
|
| 357 |
+
|
| 358 |
+
public function brand_taxonomy_columns($c, $column_name, $term_id){
|
| 359 |
+
$image = wp_get_attachment_image( get_term_meta( $term_id, 'pwb_brand_image', 1 ), array('60','60') );
|
| 360 |
+
if($image){
|
| 361 |
+
return $image;
|
| 362 |
+
}else{
|
| 363 |
+
return "-";
|
| 364 |
+
}
|
| 365 |
+
}
|
| 366 |
+
|
| 367 |
+
public static function get_brands(){
|
| 368 |
+
$result = array();
|
| 369 |
+
|
| 370 |
+
$brands = get_terms('pwb-brand',array(
|
| 371 |
+
'hide_empty' => false
|
| 372 |
+
));
|
| 373 |
+
|
| 374 |
+
if(is_array($brands) && count($brands)>0){
|
| 375 |
+
$result = $brands;
|
| 376 |
+
}
|
| 377 |
+
|
| 378 |
+
return $result;
|
| 379 |
+
|
| 380 |
+
}
|
| 381 |
+
}
|
classes/class-pwb-admin-tab.php
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
namespace Perfect_Woocommerce_Brands;
|
| 3 |
+
|
| 4 |
+
defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
|
| 5 |
+
|
| 6 |
+
class Pwb_Admin_Tab {
|
| 7 |
+
|
| 8 |
+
public static function init() {
|
| 9 |
+
add_filter( 'woocommerce_settings_tabs_array', __CLASS__ . '::add_settings_tab', 50 );
|
| 10 |
+
add_action( 'woocommerce_settings_tabs_pwb_admin_tab', __CLASS__ . '::settings_tab' );
|
| 11 |
+
add_action( 'woocommerce_update_options_pwb_admin_tab', __CLASS__ . '::update_settings' );
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
/**
|
| 16 |
+
* Add a new settings tab to the WooCommerce settings tabs array.
|
| 17 |
+
*
|
| 18 |
+
* @param array $settings_tabs Array of WooCommerce setting tabs & their labels, excluding the Subscription tab.
|
| 19 |
+
* @return array $settings_tabs Array of WooCommerce setting tabs & their labels, including the Subscription tab.
|
| 20 |
+
*/
|
| 21 |
+
public static function add_settings_tab( $settings_tabs ) {
|
| 22 |
+
$settings_tabs['pwb_admin_tab'] = __( 'Brands', 'perfect-woocommerce-brands' );
|
| 23 |
+
return $settings_tabs;
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
/**
|
| 28 |
+
* Uses the WooCommerce admin fields API to output settings via the @see woocommerce_admin_fields() function.
|
| 29 |
+
*
|
| 30 |
+
* @uses woocommerce_admin_fields()
|
| 31 |
+
* @uses self::get_settings()
|
| 32 |
+
*/
|
| 33 |
+
public static function settings_tab() {
|
| 34 |
+
woocommerce_admin_fields( self::get_settings() );
|
| 35 |
+
}
|
| 36 |
+
|
| 37 |
+
|
| 38 |
+
/**
|
| 39 |
+
* Uses the WooCommerce options API to save settings via the @see woocommerce_update_options() function.
|
| 40 |
+
*
|
| 41 |
+
* @uses woocommerce_update_options()
|
| 42 |
+
* @uses self::get_settings()
|
| 43 |
+
*/
|
| 44 |
+
public static function update_settings() {
|
| 45 |
+
update_option( 'old_wc_pwb_admin_tab_slug', get_taxonomy('pwb-brand')->rewrite['slug'] );
|
| 46 |
+
|
| 47 |
+
if(isset($_POST['wc_pwb_admin_tab_slug'])){
|
| 48 |
+
$_POST['wc_pwb_admin_tab_slug'] = sanitize_title($_POST['wc_pwb_admin_tab_slug']);
|
| 49 |
+
}
|
| 50 |
+
|
| 51 |
+
woocommerce_update_options( self::get_settings() );
|
| 52 |
+
|
| 53 |
+
}
|
| 54 |
+
|
| 55 |
+
|
| 56 |
+
/**
|
| 57 |
+
* Get all the settings for this plugin for @see woocommerce_admin_fields() function.
|
| 58 |
+
*
|
| 59 |
+
* @return array Array of settings for @see woocommerce_admin_fields() function.
|
| 60 |
+
*/
|
| 61 |
+
public static function get_settings() {
|
| 62 |
+
|
| 63 |
+
$available_image_sizes_adapted = array();
|
| 64 |
+
$available_image_sizes = get_intermediate_image_sizes();
|
| 65 |
+
|
| 66 |
+
foreach($available_image_sizes as $image_size){
|
| 67 |
+
$available_image_sizes_adapted[$image_size] = $image_size;
|
| 68 |
+
}
|
| 69 |
+
|
| 70 |
+
$settings = array(
|
| 71 |
+
'section_title' => array(
|
| 72 |
+
'name' => __( 'Brands settings', 'perfect-woocommerce-brands' ),
|
| 73 |
+
'type' => 'title',
|
| 74 |
+
'desc' => '',
|
| 75 |
+
'id' => 'wc_pwb_admin_tab_section_title'
|
| 76 |
+
),
|
| 77 |
+
'slug' => array(
|
| 78 |
+
'name' => __( 'Slug', 'perfect-woocommerce-brands' ),
|
| 79 |
+
'type' => 'text',
|
| 80 |
+
'desc' => __( 'Brands taxonomy slug', 'perfect-woocommerce-brands' ),
|
| 81 |
+
'id' => 'wc_pwb_admin_tab_slug',
|
| 82 |
+
'placeholder' => get_taxonomy('pwb-brand')->rewrite['slug']
|
| 83 |
+
),
|
| 84 |
+
'brand_logo_size' => array(
|
| 85 |
+
'name' => __( 'Brand logo size', 'perfect-woocommerce-brands' ),
|
| 86 |
+
'type' => 'select',
|
| 87 |
+
'desc' => __( 'Brand logo size for single product view', 'perfect-woocommerce-brands' ),
|
| 88 |
+
'id' => 'wc_pwb_admin_tab_brand_logo_size',
|
| 89 |
+
'options' => $available_image_sizes_adapted
|
| 90 |
+
),
|
| 91 |
+
'section_end' => array(
|
| 92 |
+
'type' => 'sectionend',
|
| 93 |
+
'id' => 'wc_pwb_admin_tab_section_end'
|
| 94 |
+
)
|
| 95 |
+
);
|
| 96 |
+
|
| 97 |
+
return apply_filters( 'wc_pwb_admin_tab_settings', $settings );
|
| 98 |
+
}
|
| 99 |
+
|
| 100 |
+
}
|
| 101 |
+
|
| 102 |
+
Pwb_Admin_Tab::init();
|
classes/shortcodes/class-pwb-all-brands-shortcode.php
ADDED
|
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
namespace Perfect_Woocommerce_Brands;
|
| 3 |
+
|
| 4 |
+
defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
|
| 5 |
+
|
| 6 |
+
class Pwb_All_Brands_Shortcode{
|
| 7 |
+
|
| 8 |
+
public static function all_brands_shortcode( $atts ) {
|
| 9 |
+
$atts = shortcode_atts( array(
|
| 10 |
+
'per_page' => "10",
|
| 11 |
+
'image_size' => "thumbnail"
|
| 12 |
+
), $atts, 'pwb-all-brands' );
|
| 13 |
+
|
| 14 |
+
$brands = Perfect_Woocommerce_Brands::get_brands();
|
| 15 |
+
|
| 16 |
+
?>
|
| 17 |
+
<div class="pwb-all-brands">
|
| 18 |
+
<?php static::pagination($brands, $atts['per_page'], $atts['image_size']);?>
|
| 19 |
+
</div>
|
| 20 |
+
<?php
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
public static function pagination($display_array, $show_per_page, $image_size) {
|
| 24 |
+
$page = 1;
|
| 25 |
+
|
| 26 |
+
if(isset($_GET['pwb-page']) && filter_var($_GET['pwb-page'], FILTER_VALIDATE_INT) == true){
|
| 27 |
+
$page = $_GET['pwb-page'];
|
| 28 |
+
}
|
| 29 |
+
|
| 30 |
+
$page = $page < 1 ? 1 : $page;
|
| 31 |
+
|
| 32 |
+
// start position in the $display_array
|
| 33 |
+
// +1 is to account for total values.
|
| 34 |
+
$start = ($page - 1) * ($show_per_page);
|
| 35 |
+
$offset = $show_per_page;
|
| 36 |
+
|
| 37 |
+
$outArray = array_slice($display_array, $start, $offset);
|
| 38 |
+
|
| 39 |
+
//pagination links
|
| 40 |
+
$total_elements = count($display_array);
|
| 41 |
+
$pages = ((int)$total_elements / (int)$show_per_page);
|
| 42 |
+
$pages = ceil($pages);
|
| 43 |
+
if($pages>=1 && $page <= $pages){
|
| 44 |
+
|
| 45 |
+
?>
|
| 46 |
+
<div class="pwb-brands-cols-outer">
|
| 47 |
+
<?php
|
| 48 |
+
foreach($outArray as $brand){
|
| 49 |
+
$brand_id = $brand->term_id;
|
| 50 |
+
$brand_name = $brand->name;
|
| 51 |
+
$brand_link = get_term_link($brand_id);
|
| 52 |
+
|
| 53 |
+
$attachment_id = get_term_meta( $brand_id, 'pwb_brand_image', 1 );
|
| 54 |
+
$attachment_html = $brand_name;
|
| 55 |
+
if($attachment_id!=''){
|
| 56 |
+
$attachment_html = wp_get_attachment_image($attachment_id,$image_size);
|
| 57 |
+
}
|
| 58 |
+
|
| 59 |
+
?>
|
| 60 |
+
<div class="pwb-brands-col3">
|
| 61 |
+
<div>
|
| 62 |
+
<?php echo $brand_name;?>
|
| 63 |
+
<small>(<?php echo $brand->count;?>)</small>
|
| 64 |
+
</div>
|
| 65 |
+
<div>
|
| 66 |
+
<a href="<?php echo $brand_link;?>" title="<?php _e( 'View brand', 'perfect-woocommerce-brands' );?>"><?php echo $attachment_html;?></a>
|
| 67 |
+
</div>
|
| 68 |
+
</div>
|
| 69 |
+
<?php
|
| 70 |
+
}
|
| 71 |
+
?>
|
| 72 |
+
</div>
|
| 73 |
+
<?php
|
| 74 |
+
$next = $page + 1;
|
| 75 |
+
$prev = $page - 1;
|
| 76 |
+
|
| 77 |
+
echo '<div class="pwb-pagination-wrapper">';
|
| 78 |
+
if($prev>1){
|
| 79 |
+
echo '<a href="'.get_the_permalink().'" class="pwb-pagination prev" title="'.__('First page','perfect-woocommerce-brands').'">«</a>';
|
| 80 |
+
}
|
| 81 |
+
if($prev>0){
|
| 82 |
+
echo '<a href="'.get_the_permalink().'?pwb-page='.$prev.'" class="pwb-pagination last" title="'.__('Previous page','perfect-woocommerce-brands').'">‹</a>';
|
| 83 |
+
}
|
| 84 |
+
|
| 85 |
+
if($next<=$pages){
|
| 86 |
+
echo '<a href="'.get_the_permalink().'?pwb-page='.$next.'" class="pwb-pagination first" title="'.__('Next page','perfect-woocommerce-brands').'">›</a>';
|
| 87 |
+
}
|
| 88 |
+
if($next<$pages){
|
| 89 |
+
echo '<a href="'.get_the_permalink().'?pwb-page='.$pages.'" class="pwb-pagination next" title="'.__('Last page','perfect-woocommerce-brands').'">»</a>';
|
| 90 |
+
}
|
| 91 |
+
echo '</div>';
|
| 92 |
+
|
| 93 |
+
}else{
|
| 94 |
+
echo __('No results','perfect-woocommerce-brands');
|
| 95 |
+
}
|
| 96 |
+
|
| 97 |
+
}
|
| 98 |
+
}
|
classes/shortcodes/class-pwb-brand-shortcode.php
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
namespace Perfect_Woocommerce_Brands;
|
| 3 |
+
|
| 4 |
+
defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
|
| 5 |
+
|
| 6 |
+
class Pwb_Brand_Shortcode{
|
| 7 |
+
|
| 8 |
+
public static function brand_shortcode( $atts ) {
|
| 9 |
+
$atts = shortcode_atts( array(
|
| 10 |
+
'product_id' => null,
|
| 11 |
+
'image_size' => 'thumbnail'
|
| 12 |
+
), $atts, 'pwb-brand' );
|
| 13 |
+
|
| 14 |
+
$brands = wp_get_post_terms( $atts['product_id'], 'pwb-brand');
|
| 15 |
+
|
| 16 |
+
foreach($brands as $brand){
|
| 17 |
+
if(is_array($brands) && count($brands)>0){
|
| 18 |
+
$brand_link = get_term_link ( $brand->term_id, 'pwb-brand' );
|
| 19 |
+
$attachment_id = get_term_meta( $brand->term_id, 'pwb_brand_image', 1 );
|
| 20 |
+
|
| 21 |
+
$attachment_html = wp_get_attachment_image($attachment_id,$atts['image_size']);
|
| 22 |
+
echo '<a href="'.$brand_link.'" title="'.__( 'View brand', 'perfect-woocommerce-brands' ).'">'.$attachment_html.'</a>';
|
| 23 |
+
}
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
}
|
| 28 |
+
|
| 29 |
+
}
|
classes/shortcodes/class-pwb-carousel-shortcode.php
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
namespace Perfect_Woocommerce_Brands;
|
| 3 |
+
|
| 4 |
+
defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
|
| 5 |
+
|
| 6 |
+
class Pwb_Carousel_Shortcode{
|
| 7 |
+
|
| 8 |
+
public static function carousel_shortcode( $atts ) {
|
| 9 |
+
$atts = shortcode_atts( array(
|
| 10 |
+
'items' => "10",
|
| 11 |
+
'items_to_show' => "5",
|
| 12 |
+
'items_to_scroll' => "1",
|
| 13 |
+
'image_size' => "thumbnail",
|
| 14 |
+
'autoplay' => "true"
|
| 15 |
+
), $atts, 'pwb-carousel' );
|
| 16 |
+
|
| 17 |
+
ob_start();
|
| 18 |
+
|
| 19 |
+
$foreach_iterator = 0;
|
| 20 |
+
|
| 21 |
+
$autoplay = 'true';
|
| 22 |
+
if($atts['autoplay']!='true'){
|
| 23 |
+
$autoplay = 'false';
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
?><div class="pwb-carousel" data-slick='{"slidesToShow": <?php echo (int)$atts['items_to_show'];?>, "slidesToScroll": <?php echo (int)$atts['items_to_scroll'];?>, "autoplay": <?php echo $autoplay;?>}'><?php
|
| 27 |
+
foreach(Perfect_Woocommerce_Brands::get_brands() as $brand){
|
| 28 |
+
if($foreach_iterator>=(int)$atts['items']){
|
| 29 |
+
break;
|
| 30 |
+
}
|
| 31 |
+
|
| 32 |
+
$brand_id = $brand->term_id;
|
| 33 |
+
$brand_link = get_term_link($brand_id);
|
| 34 |
+
|
| 35 |
+
$attachment_id = get_term_meta( $brand_id, 'pwb_brand_image', 1 );
|
| 36 |
+
$attachment_html = $brand->name;
|
| 37 |
+
if($attachment_id!=''){
|
| 38 |
+
$attachment_html = wp_get_attachment_image($attachment_id,$atts['image_size']);
|
| 39 |
+
}
|
| 40 |
+
|
| 41 |
+
echo '<div>';
|
| 42 |
+
echo '<a href="'.$brand_link.'" title="'.__( 'View brand', 'perfect-woocommerce-brands' ).'">'.$attachment_html.'</a>';
|
| 43 |
+
echo '</div>';
|
| 44 |
+
|
| 45 |
+
$foreach_iterator++;
|
| 46 |
+
}
|
| 47 |
+
echo '</div>';
|
| 48 |
+
|
| 49 |
+
return ob_get_clean();
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
}
|
classes/widgets/class-pwb-dropdown-widget.php
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
namespace Perfect_Woocommerce_Brands;
|
| 3 |
+
|
| 4 |
+
defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
|
| 5 |
+
|
| 6 |
+
class Pwb_Dropdown_Widget extends \WP_Widget {
|
| 7 |
+
|
| 8 |
+
function __construct(){
|
| 9 |
+
$params = array(
|
| 10 |
+
'description' => __( 'Adds a brands dropdown to your site', 'perfect-woocommerce-brands' ),
|
| 11 |
+
'name' => __( 'Brands dropdown', 'perfect-woocommerce-brands' )
|
| 12 |
+
);
|
| 13 |
+
parent::__construct('Pwb_Dropdown_Widget', '', $params);
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
public function form($instance){
|
| 17 |
+
extract($instance);
|
| 18 |
+
?>
|
| 19 |
+
|
| 20 |
+
<p>
|
| 21 |
+
<label for="<?php echo esc_attr( $this->get_field_id('title') ); ?>"><?php echo __( 'Title', 'perfect-woocommerce-brands' );?></label>
|
| 22 |
+
<input
|
| 23 |
+
class="widefat"
|
| 24 |
+
type="text"
|
| 25 |
+
id="<?php echo esc_attr( $this->get_field_id('title') ); ?>"
|
| 26 |
+
name="<?php echo esc_attr( $this->get_field_name('title') ); ?>"
|
| 27 |
+
value="<?php if(isset($title)) echo esc_attr($title); ?>">
|
| 28 |
+
</p>
|
| 29 |
+
|
| 30 |
+
<?php
|
| 31 |
+
}
|
| 32 |
+
|
| 33 |
+
public function widget($args, $instance){
|
| 34 |
+
extract($args);
|
| 35 |
+
extract($instance);
|
| 36 |
+
|
| 37 |
+
echo $before_widget;
|
| 38 |
+
|
| 39 |
+
if(!empty($title)){
|
| 40 |
+
echo $before_title . $title . $after_title;
|
| 41 |
+
}
|
| 42 |
+
|
| 43 |
+
$this->get_brands();
|
| 44 |
+
|
| 45 |
+
echo $after_widget;
|
| 46 |
+
|
| 47 |
+
}
|
| 48 |
+
|
| 49 |
+
private function get_brands(){
|
| 50 |
+
$brands = get_terms('pwb-brand',array(
|
| 51 |
+
'hide_empty' => false
|
| 52 |
+
));
|
| 53 |
+
|
| 54 |
+
if(is_array($brands) && count($brands)>0){
|
| 55 |
+
echo '<select class="pwb-dropdown-widget">';
|
| 56 |
+
echo '<option selected="true" disabled="disabled">'.__( 'Brands', 'perfect-woocommerce-brands' ).'</option>';
|
| 57 |
+
foreach ($brands as $brand) {
|
| 58 |
+
$brand_name = $brand->name;
|
| 59 |
+
$brand_link = get_term_link($brand->term_id);
|
| 60 |
+
echo '<option value="'.$brand_link.'">'.$brand->name.'</option>';
|
| 61 |
+
}
|
| 62 |
+
echo '</select>';
|
| 63 |
+
}else{
|
| 64 |
+
echo __( 'There is not available brands', 'perfect-woocommerce-brands' );
|
| 65 |
+
}
|
| 66 |
+
|
| 67 |
+
}
|
| 68 |
+
|
| 69 |
+
}
|
classes/widgets/class-pwb-list-widget.php
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
namespace Perfect_Woocommerce_Brands;
|
| 3 |
+
|
| 4 |
+
defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
|
| 5 |
+
|
| 6 |
+
class Pwb_List_Widget extends \WP_Widget {
|
| 7 |
+
|
| 8 |
+
function __construct(){
|
| 9 |
+
$params = array(
|
| 10 |
+
'description' => __( 'Adds a brands list to your site', 'perfect-woocommerce-brands' ),
|
| 11 |
+
'name' => __( 'Brands list', 'perfect-woocommerce-brands' )
|
| 12 |
+
);
|
| 13 |
+
parent::__construct('Pwb_List_Widget', '', $params);
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
public function form($instance){
|
| 17 |
+
extract($instance);
|
| 18 |
+
?>
|
| 19 |
+
|
| 20 |
+
<p>
|
| 21 |
+
<label for="<?php echo esc_attr( $this->get_field_id('title') ); ?>"><?php echo __( 'Title', 'perfect-woocommerce-brands' );?></label>
|
| 22 |
+
<input
|
| 23 |
+
class="widefat"
|
| 24 |
+
type="text"
|
| 25 |
+
id="<?php echo esc_attr( $this->get_field_id('title') ); ?>"
|
| 26 |
+
name="<?php echo esc_attr( $this->get_field_name('title') ); ?>"
|
| 27 |
+
value="<?php if(isset($title)) echo esc_attr($title); ?>">
|
| 28 |
+
</p>
|
| 29 |
+
|
| 30 |
+
<?php
|
| 31 |
+
}
|
| 32 |
+
|
| 33 |
+
public function widget($args, $instance){
|
| 34 |
+
extract($args);
|
| 35 |
+
extract($instance);
|
| 36 |
+
|
| 37 |
+
echo $before_widget;
|
| 38 |
+
|
| 39 |
+
if(!empty($title)){
|
| 40 |
+
echo $before_title . $title . $after_title;
|
| 41 |
+
}
|
| 42 |
+
|
| 43 |
+
$this->get_brands();
|
| 44 |
+
|
| 45 |
+
echo $after_widget;
|
| 46 |
+
|
| 47 |
+
}
|
| 48 |
+
|
| 49 |
+
private function get_brands(){
|
| 50 |
+
$brands = get_terms('pwb-brand',array(
|
| 51 |
+
'hide_empty' => false
|
| 52 |
+
));
|
| 53 |
+
|
| 54 |
+
if(is_array($brands) && count($brands)>0){
|
| 55 |
+
echo '<ul>';
|
| 56 |
+
foreach ($brands as $brand) {
|
| 57 |
+
$brand_name = $brand->name;
|
| 58 |
+
$brand_link = get_term_link($brand->term_id);
|
| 59 |
+
echo '<li>';
|
| 60 |
+
echo '<a href="'.$brand_link.'" title="'.__( 'Go to', 'perfect-woocommerce-brands' ).' '.$brand->name.'">'.$brand->name.'</a>';
|
| 61 |
+
echo '</li>';
|
| 62 |
+
}
|
| 63 |
+
echo '</ul>';
|
| 64 |
+
}else{
|
| 65 |
+
echo __( 'There is not available brands', 'perfect-woocommerce-brands' );
|
| 66 |
+
}
|
| 67 |
+
|
| 68 |
+
}
|
| 69 |
+
|
| 70 |
+
}
|
lang/perfect-woocommerce-brands-es_ES.mo
ADDED
|
Binary file
|
lang/perfect-woocommerce-brands-es_ES.po
ADDED
|
@@ -0,0 +1,299 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
msgid ""
|
| 2 |
+
msgstr ""
|
| 3 |
+
"Project-Id-Version: Perfect WooCommerce Brands\n"
|
| 4 |
+
"POT-Creation-Date: 2016-05-30 23:54+0200\n"
|
| 5 |
+
"PO-Revision-Date: 2016-05-30 23:55+0200\n"
|
| 6 |
+
"Last-Translator: \n"
|
| 7 |
+
"Language-Team: \n"
|
| 8 |
+
"Language: es_ES\n"
|
| 9 |
+
"MIME-Version: 1.0\n"
|
| 10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 12 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
| 13 |
+
"X-Generator: Poedit 1.8.7\n"
|
| 14 |
+
"X-Poedit-Basepath: ..\n"
|
| 15 |
+
"X-Poedit-WPHeader: main.php\n"
|
| 16 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
| 17 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
| 18 |
+
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;"
|
| 19 |
+
"_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
| 20 |
+
"X-Poedit-SearchPath-0: .\n"
|
| 21 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
| 22 |
+
|
| 23 |
+
#: classes/class-perfect-woocommerce-brands.php:51
|
| 24 |
+
msgid "PWB Brands carousel"
|
| 25 |
+
msgstr "PWB Carrusel de marcas"
|
| 26 |
+
|
| 27 |
+
#: classes/class-perfect-woocommerce-brands.php:52
|
| 28 |
+
msgid "Brands carousel"
|
| 29 |
+
msgstr "Carrusel de marcas"
|
| 30 |
+
|
| 31 |
+
#: classes/class-perfect-woocommerce-brands.php:61
|
| 32 |
+
msgid "Items"
|
| 33 |
+
msgstr "Elementos"
|
| 34 |
+
|
| 35 |
+
#: classes/class-perfect-woocommerce-brands.php:64
|
| 36 |
+
msgid "Number of items to load"
|
| 37 |
+
msgstr "Número de elementos que cargar"
|
| 38 |
+
|
| 39 |
+
#: classes/class-perfect-woocommerce-brands.php:69
|
| 40 |
+
msgid "Items to show"
|
| 41 |
+
msgstr "Elementos que mostrar"
|
| 42 |
+
|
| 43 |
+
#: classes/class-perfect-woocommerce-brands.php:72
|
| 44 |
+
msgid "Number of items to show"
|
| 45 |
+
msgstr "Número de elementos a mostrar"
|
| 46 |
+
|
| 47 |
+
#: classes/class-perfect-woocommerce-brands.php:77
|
| 48 |
+
msgid "Items to scroll"
|
| 49 |
+
msgstr "Número de elementos por scroll"
|
| 50 |
+
|
| 51 |
+
#: classes/class-perfect-woocommerce-brands.php:80
|
| 52 |
+
msgid "Number of items to scroll"
|
| 53 |
+
msgstr "Número de elementos por cada scroll"
|
| 54 |
+
|
| 55 |
+
#: classes/class-perfect-woocommerce-brands.php:85
|
| 56 |
+
msgid "Autoplay"
|
| 57 |
+
msgstr "Modo automático"
|
| 58 |
+
|
| 59 |
+
#: classes/class-perfect-woocommerce-brands.php:87
|
| 60 |
+
msgid "Autoplay carousel"
|
| 61 |
+
msgstr "Modo automático para el carrusel"
|
| 62 |
+
|
| 63 |
+
#: classes/class-perfect-woocommerce-brands.php:91
|
| 64 |
+
#: classes/class-perfect-woocommerce-brands.php:120
|
| 65 |
+
#: classes/class-perfect-woocommerce-brands.php:149
|
| 66 |
+
#: classes/class-pwb-admin-tab.php:85
|
| 67 |
+
msgid "Brand logo size"
|
| 68 |
+
msgstr "Tamaño del logo de la marca"
|
| 69 |
+
|
| 70 |
+
#: classes/class-perfect-woocommerce-brands.php:102
|
| 71 |
+
msgid "PWB All brands"
|
| 72 |
+
msgstr "PWC Todas las marcas"
|
| 73 |
+
|
| 74 |
+
#: classes/class-perfect-woocommerce-brands.php:103
|
| 75 |
+
msgid "Show all brands"
|
| 76 |
+
msgstr "Mostrar todas las marcas"
|
| 77 |
+
|
| 78 |
+
#: classes/class-perfect-woocommerce-brands.php:113
|
| 79 |
+
msgid "Brands per page"
|
| 80 |
+
msgstr "Marcas por página"
|
| 81 |
+
|
| 82 |
+
#: classes/class-perfect-woocommerce-brands.php:116
|
| 83 |
+
msgid "Show x brands per page"
|
| 84 |
+
msgstr "Mostrar x marcas por página"
|
| 85 |
+
|
| 86 |
+
#: classes/class-perfect-woocommerce-brands.php:131
|
| 87 |
+
msgid "PWB brand"
|
| 88 |
+
msgstr "PWB marca"
|
| 89 |
+
|
| 90 |
+
#: classes/class-perfect-woocommerce-brands.php:132
|
| 91 |
+
msgid "Show brand for a specific product"
|
| 92 |
+
msgstr "Ver marcas de un producto específico"
|
| 93 |
+
|
| 94 |
+
#: classes/class-perfect-woocommerce-brands.php:142
|
| 95 |
+
msgid "Product id"
|
| 96 |
+
msgstr "Id del producto"
|
| 97 |
+
|
| 98 |
+
#: classes/class-perfect-woocommerce-brands.php:145
|
| 99 |
+
msgid "Product id (post id)"
|
| 100 |
+
msgstr "Id del producto (id del post)"
|
| 101 |
+
|
| 102 |
+
#: classes/class-perfect-woocommerce-brands.php:177
|
| 103 |
+
#: classes/class-perfect-woocommerce-brands.php:179
|
| 104 |
+
#: classes/shortcodes/class-pwb-all-brands-shortcode.php:66
|
| 105 |
+
#: classes/shortcodes/class-pwb-brand-shortcode.php:22
|
| 106 |
+
#: classes/shortcodes/class-pwb-carousel-shortcode.php:42
|
| 107 |
+
msgid "View brand"
|
| 108 |
+
msgstr "Ver marca"
|
| 109 |
+
|
| 110 |
+
#: classes/class-perfect-woocommerce-brands.php:241
|
| 111 |
+
#: classes/class-perfect-woocommerce-brands.php:243
|
| 112 |
+
#: classes/class-pwb-admin-tab.php:22
|
| 113 |
+
#: classes/widgets/class-pwb-dropdown-widget.php:56
|
| 114 |
+
msgid "Brands"
|
| 115 |
+
msgstr "Marcas"
|
| 116 |
+
|
| 117 |
+
#: classes/class-perfect-woocommerce-brands.php:242
|
| 118 |
+
msgid "Brand"
|
| 119 |
+
msgstr "Marca"
|
| 120 |
+
|
| 121 |
+
#: classes/class-perfect-woocommerce-brands.php:244
|
| 122 |
+
msgid "All Brands"
|
| 123 |
+
msgstr "Todas las marcas"
|
| 124 |
+
|
| 125 |
+
#: classes/class-perfect-woocommerce-brands.php:245
|
| 126 |
+
msgid "Edit Brand"
|
| 127 |
+
msgstr "Editar marca"
|
| 128 |
+
|
| 129 |
+
#: classes/class-perfect-woocommerce-brands.php:246
|
| 130 |
+
msgid "View Brand"
|
| 131 |
+
msgstr "Ver marca"
|
| 132 |
+
|
| 133 |
+
#: classes/class-perfect-woocommerce-brands.php:247
|
| 134 |
+
msgid "Update Brand"
|
| 135 |
+
msgstr "Actualizar marca"
|
| 136 |
+
|
| 137 |
+
#: classes/class-perfect-woocommerce-brands.php:248
|
| 138 |
+
msgid "Add New Brand"
|
| 139 |
+
msgstr "Añadir nueva marca"
|
| 140 |
+
|
| 141 |
+
#: classes/class-perfect-woocommerce-brands.php:249
|
| 142 |
+
msgid "New Brand Name"
|
| 143 |
+
msgstr "Nuevo nombre de marca"
|
| 144 |
+
|
| 145 |
+
#: classes/class-perfect-woocommerce-brands.php:250
|
| 146 |
+
msgid "Parent Brand"
|
| 147 |
+
msgstr "Marca Padre"
|
| 148 |
+
|
| 149 |
+
#: classes/class-perfect-woocommerce-brands.php:251
|
| 150 |
+
msgid "Parent Brand:"
|
| 151 |
+
msgstr "Marca Padre:"
|
| 152 |
+
|
| 153 |
+
#: classes/class-perfect-woocommerce-brands.php:252
|
| 154 |
+
msgid "Search Brands"
|
| 155 |
+
msgstr "Buscar Marcas"
|
| 156 |
+
|
| 157 |
+
#: classes/class-perfect-woocommerce-brands.php:253
|
| 158 |
+
msgid "Popular Brands"
|
| 159 |
+
msgstr "Marcas Populares"
|
| 160 |
+
|
| 161 |
+
#: classes/class-perfect-woocommerce-brands.php:254
|
| 162 |
+
msgid "Separate brands with commas"
|
| 163 |
+
msgstr "Separar marcas con comas"
|
| 164 |
+
|
| 165 |
+
#: classes/class-perfect-woocommerce-brands.php:255
|
| 166 |
+
msgid "Add or remove brands"
|
| 167 |
+
msgstr "Añadir o eliminar marcas"
|
| 168 |
+
|
| 169 |
+
#: classes/class-perfect-woocommerce-brands.php:256
|
| 170 |
+
msgid "Choose from the most used brands"
|
| 171 |
+
msgstr "Seleccionar de las marcas más utilizadas"
|
| 172 |
+
|
| 173 |
+
#: classes/class-perfect-woocommerce-brands.php:257
|
| 174 |
+
msgid "No brands found"
|
| 175 |
+
msgstr "No se han encontrado marcas"
|
| 176 |
+
|
| 177 |
+
#: classes/class-perfect-woocommerce-brands.php:301
|
| 178 |
+
#: classes/class-perfect-woocommerce-brands.php:317
|
| 179 |
+
msgid "Brand logo"
|
| 180 |
+
msgstr "Logo de la marca"
|
| 181 |
+
|
| 182 |
+
#: classes/class-perfect-woocommerce-brands.php:303
|
| 183 |
+
#: classes/class-perfect-woocommerce-brands.php:321
|
| 184 |
+
msgid "Select image"
|
| 185 |
+
msgstr "Seleccionar imagen"
|
| 186 |
+
|
| 187 |
+
#: classes/class-perfect-woocommerce-brands.php:349
|
| 188 |
+
msgid "Logo"
|
| 189 |
+
msgstr "Logo"
|
| 190 |
+
|
| 191 |
+
#: classes/class-pwb-admin-tab.php:72
|
| 192 |
+
msgid "Brands settings"
|
| 193 |
+
msgstr "Ajustes de las marcas"
|
| 194 |
+
|
| 195 |
+
#: classes/class-pwb-admin-tab.php:78
|
| 196 |
+
msgid "Slug"
|
| 197 |
+
msgstr "Slug"
|
| 198 |
+
|
| 199 |
+
#: classes/class-pwb-admin-tab.php:80
|
| 200 |
+
msgid "Brands taxonomy slug"
|
| 201 |
+
msgstr "Slug de la taxonomía marcas"
|
| 202 |
+
|
| 203 |
+
#: classes/class-pwb-admin-tab.php:87
|
| 204 |
+
msgid "Brand logo size for single product view"
|
| 205 |
+
msgstr "Tamaño del logo para la vista individual de producto"
|
| 206 |
+
|
| 207 |
+
#: classes/shortcodes/class-pwb-all-brands-shortcode.php:79
|
| 208 |
+
msgid "First page"
|
| 209 |
+
msgstr "Primera página"
|
| 210 |
+
|
| 211 |
+
#: classes/shortcodes/class-pwb-all-brands-shortcode.php:82
|
| 212 |
+
msgid "Previous page"
|
| 213 |
+
msgstr "Página anterior"
|
| 214 |
+
|
| 215 |
+
#: classes/shortcodes/class-pwb-all-brands-shortcode.php:86
|
| 216 |
+
msgid "Next page"
|
| 217 |
+
msgstr "Siguiente página"
|
| 218 |
+
|
| 219 |
+
#: classes/shortcodes/class-pwb-all-brands-shortcode.php:89
|
| 220 |
+
msgid "Last page"
|
| 221 |
+
msgstr "Última página"
|
| 222 |
+
|
| 223 |
+
#: classes/shortcodes/class-pwb-all-brands-shortcode.php:94
|
| 224 |
+
msgid "No results"
|
| 225 |
+
msgstr "No se han encontrado resultados"
|
| 226 |
+
|
| 227 |
+
#: classes/widgets/class-pwb-dropdown-widget.php:10
|
| 228 |
+
msgid "Adds a brands dropdown to your site"
|
| 229 |
+
msgstr "Añade un desplegable con las marcas a tu sitio"
|
| 230 |
+
|
| 231 |
+
#: classes/widgets/class-pwb-dropdown-widget.php:11
|
| 232 |
+
msgid "Brands dropdown"
|
| 233 |
+
msgstr "Desplegable de marcas"
|
| 234 |
+
|
| 235 |
+
#: classes/widgets/class-pwb-dropdown-widget.php:21
|
| 236 |
+
#: classes/widgets/class-pwb-list-widget.php:21
|
| 237 |
+
msgid "Title"
|
| 238 |
+
msgstr "Título"
|
| 239 |
+
|
| 240 |
+
#: classes/widgets/class-pwb-dropdown-widget.php:64
|
| 241 |
+
#: classes/widgets/class-pwb-list-widget.php:65
|
| 242 |
+
msgid "There is not available brands"
|
| 243 |
+
msgstr "No se encuentran marcas disponibles"
|
| 244 |
+
|
| 245 |
+
#: classes/widgets/class-pwb-list-widget.php:10
|
| 246 |
+
msgid "Adds a brands list to your site"
|
| 247 |
+
msgstr "Añade una lista de marcas a tu sitio"
|
| 248 |
+
|
| 249 |
+
#: classes/widgets/class-pwb-list-widget.php:11
|
| 250 |
+
msgid "Brands list"
|
| 251 |
+
msgstr "Lista de marcas"
|
| 252 |
+
|
| 253 |
+
#: classes/widgets/class-pwb-list-widget.php:60
|
| 254 |
+
msgid "Go to"
|
| 255 |
+
msgstr "Ir a"
|
| 256 |
+
|
| 257 |
+
#: main.php:57
|
| 258 |
+
msgid ""
|
| 259 |
+
"Perfect WooCommerce Brands needs WooCommerce to run. Please, install and "
|
| 260 |
+
"active WooCommerce plugin."
|
| 261 |
+
msgstr ""
|
| 262 |
+
"Perfect WooCommerce Brands necesita WooCommerce para funcionar. Por favor, "
|
| 263 |
+
"instala y activa WooCommerce."
|
| 264 |
+
|
| 265 |
+
#. Plugin Name of the plugin/theme
|
| 266 |
+
msgid "Perfect WooCommerce Brands"
|
| 267 |
+
msgstr "Perfect WooCommerce Brands"
|
| 268 |
+
|
| 269 |
+
#. Plugin URI of the plugin/theme
|
| 270 |
+
msgid "https://wordpress.org/plugins/perfect-woocommerce-brands/"
|
| 271 |
+
msgstr "https://wordpress.org/plugins/perfect-woocommerce-brands/"
|
| 272 |
+
|
| 273 |
+
#. Description of the plugin/theme
|
| 274 |
+
msgid ""
|
| 275 |
+
"Perfect WooCommerce Brands allows you to show product brands in your "
|
| 276 |
+
"WooCommerce based store."
|
| 277 |
+
msgstr ""
|
| 278 |
+
"Perfect WooCommerce Brands te permite trabajar con marcas de producto en tu "
|
| 279 |
+
"tienda online basada en WooCommerce."
|
| 280 |
+
|
| 281 |
+
#. Author of the plugin/theme
|
| 282 |
+
msgid "Alberto de Vera Sevilla"
|
| 283 |
+
msgstr "Alberto de Vera Sevilla"
|
| 284 |
+
|
| 285 |
+
#. Author URI of the plugin/theme
|
| 286 |
+
msgid "https://profiles.wordpress.org/titodevera/"
|
| 287 |
+
msgstr "https://profiles.wordpress.org/titodevera/"
|
| 288 |
+
|
| 289 |
+
#~ msgid "Brands metabox"
|
| 290 |
+
#~ msgstr "Marcas metabox"
|
| 291 |
+
|
| 292 |
+
#~ msgid "image for this brand"
|
| 293 |
+
#~ msgstr "imagen para esta marca"
|
| 294 |
+
|
| 295 |
+
#~ msgid "Select an image"
|
| 296 |
+
#~ msgstr "Seleccione una imagen"
|
| 297 |
+
|
| 298 |
+
#~ msgid "Show a specific brand"
|
| 299 |
+
#~ msgstr "Mostrar marcas de un producto en concreto"
|
main.php
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/*
|
| 3 |
+
Plugin Name: Perfect WooCommerce Brands
|
| 4 |
+
Plugin URI: https://wordpress.org/plugins/perfect-woocommerce-brands/
|
| 5 |
+
Description: Perfect WooCommerce Brands allows you to show product brands in your WooCommerce based store.
|
| 6 |
+
Version: 1.1
|
| 7 |
+
Author: Alberto de Vera Sevilla
|
| 8 |
+
Author URI: https://profiles.wordpress.org/titodevera/
|
| 9 |
+
Text Domain: perfect-woocommerce-brands
|
| 10 |
+
Domain Path: /lang
|
| 11 |
+
License: GPL3
|
| 12 |
+
|
| 13 |
+
Perfect WooCommerce Brands version 1.1, Copyright (C) 2016 Alberto de Vera Sevilla
|
| 14 |
+
|
| 15 |
+
Perfect WooCommerce Brands is free software: you can redistribute it and/or modify
|
| 16 |
+
it under the terms of the GNU General Public License as published by
|
| 17 |
+
the Free Software Foundation, either version 3 of the License, or
|
| 18 |
+
(at your option) any later version.
|
| 19 |
+
|
| 20 |
+
Perfect WooCommerce Brands is distributed in the hope that it will be useful,
|
| 21 |
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 22 |
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 23 |
+
GNU General Public License for more details.
|
| 24 |
+
|
| 25 |
+
You should have received a copy of the GNU General Public License
|
| 26 |
+
along with Perfect WooCommerce Brands. If not, see <http://www.gnu.org/licenses/>.
|
| 27 |
+
|
| 28 |
+
*/
|
| 29 |
+
|
| 30 |
+
namespace Perfect_Woocommerce_Brands;
|
| 31 |
+
|
| 32 |
+
defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
|
| 33 |
+
|
| 34 |
+
add_action( 'plugins_loaded', '\Perfect_Woocommerce_Brands\pwb_load_textdomain' );
|
| 35 |
+
function pwb_load_textdomain() {
|
| 36 |
+
load_plugin_textdomain( 'perfect-woocommerce-brands', false, plugin_basename( dirname( __FILE__ ) ) . '/lang' );
|
| 37 |
+
}
|
| 38 |
+
|
| 39 |
+
register_deactivation_hook( __FILE__, function(){update_option( 'old_wc_pwb_admin_tab_slug', 'null' );} );
|
| 40 |
+
|
| 41 |
+
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
| 42 |
+
if(is_plugin_active('woocommerce/woocommerce.php')){
|
| 43 |
+
|
| 44 |
+
define('PWB_PLUGIN', plugins_url( '', __FILE__ ));
|
| 45 |
+
require 'classes/widgets/class-pwb-dropdown-widget.php';
|
| 46 |
+
require 'classes/widgets/class-pwb-list-widget.php';
|
| 47 |
+
require 'classes/shortcodes/class-pwb-carousel-shortcode.php';
|
| 48 |
+
require 'classes/shortcodes/class-pwb-all-brands-shortcode.php';
|
| 49 |
+
require 'classes/shortcodes/class-pwb-brand-shortcode.php';
|
| 50 |
+
require 'classes/class-perfect-woocommerce-brands.php';
|
| 51 |
+
new \Perfect_Woocommerce_Brands\Perfect_Woocommerce_Brands();
|
| 52 |
+
require 'classes/class-pwb-admin-tab.php';
|
| 53 |
+
|
| 54 |
+
}elseif(is_admin()){
|
| 55 |
+
|
| 56 |
+
add_action( 'admin_notices', function() {
|
| 57 |
+
$message = __( 'Perfect WooCommerce Brands needs WooCommerce to run. Please, install and active WooCommerce plugin.', 'perfect-woocommerce-brands' );
|
| 58 |
+
printf( '<div class="%1$s"><p>%2$s</p></div>', 'notice notice-error', $message );
|
| 59 |
+
});
|
| 60 |
+
|
| 61 |
+
}
|
readme.txt
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
=== Perfect WooCommerce Brands ===
|
| 2 |
+
Contributors: titodevera
|
| 3 |
+
Donate link: mailto:albertodeverasevilla@gmail.com
|
| 4 |
+
Tags: woocommerce, brands, brand taxonomy, product brands, woocommerce manufaturer, woocommerce supplier, e-commerce
|
| 5 |
+
Requires at least: 4.4
|
| 6 |
+
Tested up to: 4.5.1
|
| 7 |
+
Stable tag: 1.1
|
| 8 |
+
License: GPL3
|
| 9 |
+
License URI: http://www.gnu.org/licenses/gpl-3.0.en.html
|
| 10 |
+
|
| 11 |
+
Perfect WooCommerce Brands allows you to show product brands in your WooCommerce based store
|
| 12 |
+
|
| 13 |
+
== Description ==
|
| 14 |
+
Whether we like to admit it or not, we are all influenced by brands. Brands are a guarantee for quality, they assure product recognition in customers.
|
| 15 |
+
Is essential to work with product brands for increase sales and generate reliability on your e-commerce site.
|
| 16 |
+
With this extension you can add product brands to your WooCommerce site.
|
| 17 |
+
|
| 18 |
+
= Requirements =
|
| 19 |
+
> * PHP 5.3 or higher
|
| 20 |
+
> * WordPress 4.4 or higher
|
| 21 |
+
> * WooCommerce 2.4.0 or higher
|
| 22 |
+
> * Visual Composer (recommended)
|
| 23 |
+
|
| 24 |
+
= Features =
|
| 25 |
+
> * Very easy to use, 100% free, no ads, no premium version exists
|
| 26 |
+
> * Assign brands to products
|
| 27 |
+
> * Translation-ready (English and Spanish included)
|
| 28 |
+
> * Shortcode: Display all brands
|
| 29 |
+
> * Shortcode: Display brands carousel
|
| 30 |
+
> * Shortcode: Display brands for a specific product
|
| 31 |
+
> * Visual Composer support
|
| 32 |
+
> * Widget: Display brands as dropdown
|
| 33 |
+
> * Widget: Display brands as list
|
| 34 |
+
> * Minimalist design and fully responsive
|
| 35 |
+
> * Very lightweight
|
| 36 |
+
> * Customizable brands slug
|
| 37 |
+
|
| 38 |
+
|
| 39 |
+
== Installation ==
|
| 40 |
+
1. Upload the plugin to the '/wp-content/plugins/' directory.
|
| 41 |
+
2. Activate the plugin through the 'Plugins' menu in WordPress.
|
| 42 |
+
|
| 43 |
+
|
| 44 |
+
== Frequently Asked Questions ==
|
| 45 |
+
= Is Perfect WooCommerce Brands free? =
|
| 46 |
+
Yes, of course. This plugin is 100% free. No ads, no premium version exists.
|
| 47 |
+
|
| 48 |
+
= Where are plugin settings? =
|
| 49 |
+
Go to `WooCommerce/Settings/` and click on `Brands` tab
|
| 50 |
+
|
| 51 |
+
= How can i use the available shortcodes without Visual Composer? =
|
| 52 |
+
There are three shortcodes available:
|
| 53 |
+
> * Display all brands: [pwb-all-brands per_page="10" image_size="thumbnail"]
|
| 54 |
+
> * Display brands carousel: [pwb-carousel items="10" items_to_show="5" items_to_scroll="1" image_size="thumbnail" autoplay="true"]
|
| 55 |
+
> * Display brands for a specific product: [pwb-brand product_id="5" image_size="thumbnail"]
|
| 56 |
+
|
| 57 |
+
|
| 58 |
+
== Screenshots ==
|
| 59 |
+
1. Brands carousel
|
| 60 |
+
2. Brands page
|
| 61 |
+
3. Brands taxonomy
|
| 62 |
+
4. Brands shortcodes (with Visual Composer)
|
| 63 |
+
|
| 64 |
+
|
| 65 |
+
== Changelog ==
|
| 66 |
+
= 1.1 =
|
| 67 |
+
* Minor bug fixes
|
| 68 |
+
= 1.0 =
|
| 69 |
+
* Initial release
|
