您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

18 行
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. })