GSAP Start and End calculations are done incorrectly because the CDN of Slider, Tabs is loaded too late

These two CDNS

are loaded too late, where this results in a different height and thus the start and end is calculated incorrectly and thus the animation does not work properly. Do you have a solution for this?

Hey @Mert_Arslan! You can use the Attributes callback to run any code after the solutions are fully loaded

<script>
  window.fsAttributes = window.fsAttributes || [];
  window.fsAttributes.push([
    'cmstabs',
    (listInstances) => {
      console.log('cmstabs Successfully loaded!');

      window.fsAttributes.push([
        'cmsslider',
        (listInstances) => {
          console.log('cmsslider Successfully loaded!');

          //Code to be executed after CMS Tabs and CMS Slider are fully loaded
        },
      ]);
    },
  ]);
</script>

Hey Luis, thanks for the code. everything worked great