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

13 行
322 B

  1. const $ = require('jquery');
  2. class Table {
  3. constructor(table) {
  4. table.addClass('initiated').wrap($('<div class="responsive-table" />'));
  5. }
  6. }
  7. $('body').on('ihk-init dynamic-component-loaded gfi-dynamic-init', function () {
  8. $('.richtext table:not(.initiated)').each(function(i) {
  9. new Table($(this));
  10. });
  11. })