Sha256: b21664fe7c54df883907113f7cf927fb24fa5923d187bbebba913f20f4097e3f

Contents?: true

Size: 841 Bytes

Versions: 33

Compression:

Stored size: 841 Bytes

Contents

//= require thredded/core/on_page_load
//= require thredded/core/serialize_form

// Submit GET forms with turbolinks
(() => {
  const Thredded = window.Thredded;
  const Turbolinks = window.Turbolinks;

  Thredded.onPageLoad(() => {
    if (!Turbolinks || !Turbolinks.supported) return;
    Array.prototype.forEach.call(document.querySelectorAll('[data-thredded-turboform]'), (form) => {
      form.addEventListener('submit', handleSubmit);
    });
  });

  const handleSubmit = (evt) => {
    evt.preventDefault();
    const form = evt.currentTarget;
    Turbolinks.visit(form.action + (form.action.indexOf('?') === -1 ? '?' : '&') + Thredded.serializeForm(form));

    // On mobile the soft keyboard doesn't won't go away after the submit since we're submitting with
    // Turbolinks. Hide it:
    Thredded.hideSoftKeyboard();
  };
})();

Version data entries

33 entries across 33 versions & 2 rubygems

Version Path
thredded-0.16.13 app/assets/javascripts/thredded/components/turboforms.es6
thredded-0.16.12 app/assets/javascripts/thredded/components/turboforms.es6
thredded-0.16.11 app/assets/javascripts/thredded/components/turboforms.es6
thredded-0.16.10 app/assets/javascripts/thredded/components/turboforms.es6
thredded-0.16.9 app/assets/javascripts/thredded/components/turboforms.es6
thredded-0.16.8 app/assets/javascripts/thredded/components/turboforms.es6
thredded-0.16.7 app/assets/javascripts/thredded/components/turboforms.es6
thredded-0.16.6 app/assets/javascripts/thredded/components/turboforms.es6
thredded-0.16.5 app/assets/javascripts/thredded/components/turboforms.es6
thredded-0.16.4 app/assets/javascripts/thredded/components/turboforms.es6
thredded-0.16.3 app/assets/javascripts/thredded/components/turboforms.es6
thredded-0.16.1 app/assets/javascripts/thredded/components/turboforms.es6
thredded-0.16.0 app/assets/javascripts/thredded/components/turboforms.es6
thredded-0.15.5 app/assets/javascripts/thredded/components/turboforms.es6
thredded-0.15.4 app/assets/javascripts/thredded/components/turboforms.es6
thredded-0.15.3 app/assets/javascripts/thredded/components/turboforms.es6
thredded-0.15.2 app/assets/javascripts/thredded/components/turboforms.es6
thredded-0.15.1 app/assets/javascripts/thredded/components/turboforms.es6
threddedDANIEL-0.14.5 app/assets/javascripts/thredded/components/turboforms.es6
thredded-0.14.4 app/assets/javascripts/thredded/components/turboforms.es6