Skip to content

Commit

Permalink
update owl carousel to v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dleffler committed Nov 4, 2016
1 parent 1ed5596 commit 93f7775
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 13 deletions.
4 changes: 2 additions & 2 deletions external/ExtPrograms.csv
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ yadcf,0.9.0,github.com/vedmack/yadcf,0.9.0,
tag-it,2,aehlke.github.io/tag-it/,2,renamed css file to same as js file for our loader
multiselect,2,mind2soft.com/labs/jquery/multiselect/,2,
excoloSlider,1.1.0,excolo.github.io/Excolo-Slider/,1.1.0,
OwlCarousel2,2.1.6,github.com/smashingboxes/OwlCarousel2,2.1.6,
OwlCarousel2,2.2.0,github.com/smashingboxes/OwlCarousel2,2.2.0,
colorbox,1.6.4,www.jacklmoore.com/colorbox,1.6.4,using style #5 renamed to jquery.colorbox.css
Searcher,0.3.0,github.com/lloiser/jquery-searcher/,0.3.0,
DateTimePicker,2.5.4exp,xdsoft.net/jqplugins/datetimepicker/,2.5.4,we add .js auto-close on inline date select and extra 'reset' work & remove .css z-index issue
Bootstrap DateTimePicker,4.17.37,github.com/Eonasdan/bootstrap-datetimepicker,4.17.43,patch for 'today' in side-by-side view
moment.js,2.15.2,github.com/moment/moment,2.15.2,needed for Bootstrap DateTimePicker
strength-meter,1.1.3,github.com/kartik-v/strength-meter,1.1.3,
Sortable,1.4.2exp,github.com/RubaXa/Sortable,1.4.2,patched with dragout fix
jstree,3.3.2,github.com/vakata/jstree,3.3.2,added nav menu icons to stylesheet
jstree,3.3.3,github.com/vakata/jstree,3.3.3,added nav menu icons to stylesheet
bootstrap3-dialog,1.35.3,github.com/nakupanda/bootstrap3-dialog,1.35.3,use /src .less file and add our .less variable imports
impromptu,6.2.3,trentrichardson.com/Impromptu,6.2.3,add some colors to .css
bootstrap-touch-carousel,0.8.0exp,github.com/ixisio/bootstrap-touch-carousel,0.8.0,patched with vertical drag fix
Expand Down
28 changes: 20 additions & 8 deletions external/jquery/addons/css/owl.carousel.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Owl Carousel v2.1.6
* Owl Carousel v2.2.0
* Copyright 2013-2016 David Deutsch
* Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
*/
Expand Down Expand Up @@ -60,7 +60,7 @@
.owl-carousel.owl-hidden {
opacity: 0; }
.owl-carousel.owl-refresh .owl-item {
display: none; }
visibility: hidden; }
.owl-carousel.owl-drag .owl-item {
-webkit-user-select: none;
-moz-user-select: none;
Expand All @@ -82,8 +82,10 @@
* Owl Carousel - Animate Plugin
*/
.owl-carousel .animated {
animation-duration: 1000ms;
animation-fill-mode: both; }
-webkit-animation-duration: 1000ms;
animation-duration: 1000ms;
-webkit-animation-fill-mode: both;
animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
z-index: 0; }
Expand All @@ -92,7 +94,14 @@
z-index: 1; }

.owl-carousel .fadeOut {
animation-name: fadeOut; }
-webkit-animation-name: fadeOut;
animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
0% {
opacity: 1; }
100% {
opacity: 0; } }

@keyframes fadeOut {
0% {
Expand All @@ -114,7 +123,8 @@
transition: opacity 400ms ease; }

.owl-carousel .owl-item img.owl-lazy {
transform-style: preserve-3d; }
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d; }

/*
* Owl Carousel - Video Plugin
Expand All @@ -136,11 +146,13 @@
cursor: pointer;
z-index: 1;
-webkit-backface-visibility: hidden;
transition: -webkit-transform 100ms ease;
transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
-ms-transform: scale(1.3, 1.3);
transform: scale(1.3, 1.3); }
-webkit-transform: scale(1.3, 1.3);
-ms-transform: scale(1.3, 1.3);
transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
Expand Down
2 changes: 1 addition & 1 deletion external/jquery/addons/css/owl.theme.default.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Owl Carousel v2.1.6
* Owl Carousel v2.2.0
* Copyright 2013-2016 David Deutsch
* Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
*/
Expand Down
2 changes: 1 addition & 1 deletion external/jquery/addons/css/owl.theme.green.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Owl Carousel v2.1.6
* Owl Carousel v2.2.0
* Copyright 2013-2016 David Deutsch
* Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
*/
Expand Down
2 changes: 1 addition & 1 deletion external/jquery/addons/js/owl.carousel.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Owl Carousel v2.1.6
* Owl Carousel v2.2.0
* Copyright 2013-2016 David Deutsch
* Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
*/
Expand Down

0 comments on commit 93f7775

Please sign in to comment.