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.
 
 
 
 

15 line
403 B

  1. const $ = require('jquery');
  2. class ParticipationMap {
  3. constructor(section) {
  4. section.find('[data-link]').on('click', (e) => {
  5. window.location = $(e.currentTarget).attr('data-link');
  6. })
  7. }
  8. }
  9. $('body').on('ihk-init dynamic-component-loaded gfi-dynamic-init', function () {
  10. $('.participation.p-map').each((i, el) => {
  11. new ParticipationMap($(el));
  12. });
  13. })