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.
 
 
 
 

13 regels
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. })