Sha256: 1ebf1773031a6b037ee56751ad23e0d7ada020ddd5d47f14414baf4066f38548

Contents?: true

Size: 987 Bytes

Versions: 1

Compression:

Stored size: 987 Bytes

Contents

// Disable animations during tests to increase stability
<% reveal_animation = Rails.env.test? ? 'none' : 'fadeAndPop' %>

$(document).foundation({
    reveal: {
        animation: '<%= reveal_animation %>',
        animation_speed: 200,
        close_on_background_click: false,
        close_on_esc: true,
        dismiss_modal_class: "reveal-modal-close"
    }
});

// Honour any html autofocus attributes on inputs inside a modal dialog
$(document).on('opened.fndtn.reveal', '[data-reveal]', function () {
  var modal = $(this);
  modal.find('[autofocus]').focus();
  $('form[data-validate]').enableClientSideValidations();
  // If a modal is launched again, ensure the submit button is re-enabled.
  $.rails.enableFormElement($('input[data-disable-with]'));
});

// If there was an error submitting a modal form, be sure to re-enable the submit button
$(document).on('ajaxError', function(event, xhr, status, error) {
  $.rails.enableFormElement($('input[data-disable-with]'));
});

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
renalware-core-2.0.0.pre.beta4 app/assets/javascripts/renalware/dialogs.js.erb