Skip to content
Snippets Groups Projects
Commit 97a97554 authored by Gábor Hojtsy's avatar Gábor Hojtsy
Browse files

#213064 by dvessel: fix sticky table headers bug when resizing

parent 3bfb600a
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -75,7 +75,7 @@ Drupal.behaviors.tableHeader = function (context) { ...@@ -75,7 +75,7 @@ Drupal.behaviors.tableHeader = function (context) {
return; return;
} }
time = setTimeout(function () { time = setTimeout(function () {
$(headers).each(function () { $('table.sticky-header').each(function () {
// Force cell width calculation. // Force cell width calculation.
this.viewHeight = 0; this.viewHeight = 0;
tracker(this); tracker(this);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment