Sha256: 08346382cfd81e9757e4c3828e0fe8e31322d7846ab09cfa1b067ff08981bbee

Contents?: true

Size: 564 Bytes

Versions: 42

Compression:

Stored size: 564 Bytes

Contents

$(document).ready(function() {
  var $tab_with_error = $(".form-control.is-invalid").first().closest('.tab-pane');

  if ($tab_with_error.length > 0) {
    $(".nav.nav-tabs").find("a[href^='#" + $tab_with_error.attr('id') + "']").tab('show');
  } else if (document.location.hash.length > 0) {
    var $tab_from_url = $(".nav.nav-tabs").find("a[href^='" + document.location.hash + "']");

    if ($tab_from_url.length > 0) {
      document.location.hash = ""; // This prevents scrolling to the wrong place in the page
      $tab_from_url.tab("show");
    }
  }
});

Version data entries

42 entries across 42 versions & 1 rubygems

Version Path
effective_bootstrap-0.9.5 app/assets/javascripts/effective_bootstrap/tabs.js
effective_bootstrap-0.9.4 app/assets/javascripts/effective_bootstrap/tabs.js
effective_bootstrap-0.9.3 app/assets/javascripts/effective_bootstrap/tabs.js
effective_bootstrap-0.9.2 app/assets/javascripts/effective_bootstrap/tabs.js
effective_bootstrap-0.9.1 app/assets/javascripts/effective_bootstrap/tabs.js
effective_bootstrap-0.9.0 app/assets/javascripts/effective_bootstrap/tabs.js
effective_bootstrap-0.8.5 app/assets/javascripts/effective_bootstrap/tabs.js
effective_bootstrap-0.8.4 app/assets/javascripts/effective_bootstrap/tabs.js
effective_bootstrap-0.8.3 app/assets/javascripts/effective_bootstrap/tabs.js
effective_bootstrap-0.8.2 app/assets/javascripts/effective_bootstrap/tabs.js
effective_bootstrap-0.8.1 app/assets/javascripts/effective_bootstrap/tabs.js
effective_bootstrap-0.8.0 app/assets/javascripts/effective_bootstrap/tabs.js
effective_bootstrap-0.7.4 app/assets/javascripts/effective_bootstrap/tabs.js
effective_bootstrap-0.7.3 app/assets/javascripts/effective_bootstrap/tabs.js
effective_bootstrap-0.7.2 app/assets/javascripts/effective_bootstrap/tabs.js
effective_bootstrap-0.7.1 app/assets/javascripts/effective_bootstrap/tabs.js
effective_bootstrap-0.7.0 app/assets/javascripts/effective_bootstrap/tabs.js
effective_bootstrap-0.6.31 app/assets/javascripts/effective_bootstrap/tabs.js
effective_bootstrap-0.6.30 app/assets/javascripts/effective_bootstrap/tabs.js
effective_bootstrap-0.6.29 app/assets/javascripts/effective_bootstrap/tabs.js