選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

19 行
471 B

  1. const $ = require('jquery');
  2. class Richtext{
  3. constructor(section) {
  4. this.section = section.addClass('initiated');
  5. this.imageLinks = this.section.find('a').find('.image-full-wrapper');
  6. if(this.imageLinks.length){
  7. this.imageLinks.parent('a').addClass('image-link');
  8. }
  9. }
  10. }
  11. $('body').on('ihk-init dynamic-component-loaded gfi-dynamic-init', function () {
  12. $('.richtext:not(.initiated)').each(function (i) {
  13. new Richtext($(this));
  14. });
  15. });