選択できるのは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. })