assets/js/table-layout.js in jekyll-theme-peaceful-gates-1.2.0 vs assets/js/table-layout.js in jekyll-theme-peaceful-gates-2.0.0

- old
+ new

@@ -1,14 +1,14 @@ -$(function() { - $('.horizontal-scroll > table').each(function() { - // Get cell width from longest line in table - let cellWidth = $(this) - .find('th,td') - .map(function() { return parseInt($(this).outerWidth()) }) - .get() - .reduce((a, b) => Math.max(a, b)) - console.log('Table Cell Width:', cellWidth) - - // Set minimum width of table cell to width of longest element - $(this).find('th,td').css('min-width', cellWidth) - }) +$(function() { + $('.horizontal-scroll > table').each(function() { + // Get cell width from longest line in table + let cellWidth = $(this) + .find('th,td') + .map(function() { return parseInt($(this).outerWidth()) }) + .get() + .reduce((a, b) => Math.max(a, b)) + console.log('Table Cell Width:', cellWidth) + + // Set minimum width of table cell to width of longest element + $(this).find('th,td').css('min-width', cellWidth) + }) }) \ No newline at end of file