Last active
April 28, 2017 18:27
-
-
Save NickDeckerDevs/28fe8ead35ac5c0ff86cdf5e1ff0b6ca to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
var url = window.location.href; | |
if(url.indexOf('type=') > -1) { | |
var resource_type = url.substring(url.indexOf("type=")+5, url.length); | |
console.log(resource_type) | |
$('.resourcesUl a').each(function() { | |
var href = $(this).attr('href'); | |
console.log(href) | |
if(href == resource_type) { | |
$(this).removeClass('white').addClass('green'); | |
console.log($(this)); | |
} | |
}); | |
} | |
}); | |
equalheightByRow = function(container, target, checkChildren) { | |
$(container).each(function() { | |
var targets = $(this).find(target), | |
count = 0, | |
minHeight = 0, | |
maxHeight = 0; | |
targets.each(function() { | |
count++; | |
var elem = $(this); | |
if(checkChildren == true) { | |
var childrenHeight = getMinimumHeightForContent(elem); | |
minHeight = childrenHeight < minHeight ? minHeight : childrenHeight; | |
} else { | |
var currentHeight = elem.outerHeight(); | |
maxHeight = maxHeight < currentHeight ? currentHeight : maxHeight; | |
} | |
var newHeight = minHeight < maxHeight ? maxHeight : minHeight; | |
if(count == targets.length) { | |
targets.css('height', newHeight+'px'); | |
debugger; | |
} | |
}); | |
}); | |
} | |
function getMinimumHeightForContent(content) { | |
console.log('new minimum') | |
var minHeight = 0; | |
content.children().each(function() { | |
var elem = $(this); | |
console.log(elem) | |
console.log(elem.outerHeight(true)) | |
var currentHeight = elem.outerHeight(true); | |
minHeight = minHeight + currentHeight; | |
}); | |
console.log(minHeight); | |
return minHeight; | |
} | |
function loadAndResize() { | |
if($('.resourceDownloads').length > 0) { | |
console.log('running script') | |
equalheightByRow('.quickTips', '.resourceDownloads', false); | |
equalheightByRow('.testimonials', '.resourceDownloads', false); | |
equalheightByRow('.productBriefs', '.resourceDownloads', false); | |
equalheightByRow('.webinars', '.resourceDownloads', false); | |
equalheightByRow('.Tip-Sheets', '.resourceDownloads', false); | |
equalheightByRow('.Whitepapers', '.resourceDownloads', false); | |
equalheightByRow('.Ebooks', '.resourceDownloads', false); | |
equalheightByRow('.Case-Studies', '.resourceDownloads', false); | |
equalheightByRow('.Infographics', '.resourceDownloads', false); | |
} | |
/* don't resize on mobile */ | |
var wwidth = $(window).width(); | |
console.log(wwidth); | |
if(wwidth > 991) { | |
// if($('.hero-same-size').length > 0) { | |
// equalheight('.hero-same-size'); | |
// } | |
} | |
} | |
jQuery(window).on('resize', function() { | |
loadAndResize(); | |
}); | |
jQuery(window).on('load', function() { | |
loadAndResize(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment