Sha256: 27e7bb5c74d4f21cd1182d750a4257024deee90e07c073d6efab0f8cf76c8bec

Contents?: true

Size: 688 Bytes

Versions: 21

Compression:

Stored size: 688 Bytes

Contents

export default class {
  connect(){
    var container, target;

    function init() {
      const target_val = container.attr('data-target') || container.attr('data-bs-target');
      if (!target_val) 
        return

      target = $("#" + target_val); 
      container.on('click', open);
      target.find('[data-behavior="cancel-link"]').on('click', close);
    }

    function open(event) {
      event.preventDefault();
      target.slideToggle('slow');
    }

    function close(event) {
      event.preventDefault();
      target.slideUp('fast');
    }

    return $('[data-behavior="contact-link"]').each(function() {        
      container = $(this);
      init();
    });
  }
}

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
blacklight-spotlight-4.7.1 app/javascript/spotlight/user/report_a_problem.js
blacklight-spotlight-4.7.0 app/javascript/spotlight/user/report_a_problem.js
blacklight-spotlight-4.6.1 app/javascript/spotlight/user/report_a_problem.js
blacklight-spotlight-4.6.0 app/javascript/spotlight/user/report_a_problem.js
blacklight-spotlight-4.5.0 app/javascript/spotlight/user/report_a_problem.js
blacklight-spotlight-4.4.0 app/javascript/spotlight/user/report_a_problem.js
blacklight-spotlight-4.3.6 app/javascript/spotlight/user/report_a_problem.js
blacklight-spotlight-4.3.5 app/javascript/spotlight/user/report_a_problem.js
blacklight-spotlight-4.3.4 app/javascript/spotlight/user/report_a_problem.js
blacklight-spotlight-4.3.3 app/javascript/spotlight/user/report_a_problem.js
blacklight-spotlight-4.3.2 app/javascript/spotlight/user/report_a_problem.js
blacklight-spotlight-4.3.1 app/javascript/spotlight/user/report_a_problem.js
blacklight-spotlight-4.3.0 app/javascript/spotlight/user/report_a_problem.js
blacklight-spotlight-4.2.0 app/javascript/spotlight/user/report_a_problem.js
blacklight-spotlight-4.1.2 app/javascript/spotlight/user/report_a_problem.js
blacklight-spotlight-4.1.1 app/javascript/spotlight/user/report_a_problem.js
blacklight-spotlight-4.1.0 app/javascript/spotlight/user/report_a_problem.js
blacklight-spotlight-4.0.3 app/javascript/spotlight/user/report_a_problem.js
blacklight-spotlight-4.0.2 app/javascript/spotlight/user/report_a_problem.js
blacklight-spotlight-4.0.1 app/javascript/spotlight/user/report_a_problem.js