Forum Games

Ctrl + V

Submitted by Day, , Thread ID: 7130

Thread Closed

RE: Ctrl + V

fonzy
Newbie
Level:
0
Reputation:
0
Posts:
14
Likes:
0
Credits:
1
28-10-2019, 07:10 PM
#682
function _monitorSliderSize($slider) {
// if(Modernizr.mq('only screen and (max-width: 480px)')) {
if(Modernizr.mq('only screen and (max-width: 767px)')) {
var height = 0;

$slider.find('.slide').height('');

$slider.find('.slide').each(function(index, el) {
var elHeight = $(el).find('.slide-left').outerHeight(true) + $(el).find('.slide-right').outerHeight(true);

if(elHeight > height) {
height = elHeight;
}
}).height(height);
} else {
$slider.find('.slide').height('');
}
}

Users browsing this thread: 7 Guest(s)