Forum Games

Ctrl + V

Submitted by Day, , Thread ID: 7130

Thread Closed

RE: Ctrl + V

#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: 13 Guest(s)