You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 lines
307 B

  1. const $ = require('jquery');
  2. class TimelineSwitch {
  3. constructor(section) {
  4. }
  5. swapTimeline(id) {
  6. }
  7. }
  8. $('body').on('ihk-init dynamic-component-loaded gfi-dynamic-init', function () {
  9. $('.timeline-switch:not(.initiated)').each((i, el) => {
  10. new TimelineSwitch($(el));
  11. })
  12. })