Skip to content

Commit

Permalink
Updated jQuery plugin to version 1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ausi committed Oct 20, 2016
1 parent 3f3ee1f commit 2dfdced
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions assets/js/rocksolid-slider.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! rocksolid-slider v1.6.1 */
/*! rocksolid-slider v1.6.2 */
(function($, window, document) {

var Rst = {};
Expand Down Expand Up @@ -1767,9 +1767,10 @@ Rst.Slider = (function() {
element.css(css);
// Fix iOS Safari bug with invisible slides, see #41
if (['iPhone', 'iPad', 'iPod'].indexOf(this.device) !== -1) {
element.css('height', '0');
var origHeight = element[0].style.height || '';
element[0].style.height = '0';
element.height();
element.css('height', '');
element[0].style.height = origHeight;
}
}
else if (animate) {
Expand Down
Loading

0 comments on commit 2dfdced

Please sign in to comment.