Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / themes / contrib / bootstrap / js / misc / vertical-tabs.js
index 25befa5ead0564e744aab028fa962861c64020d8..0085c4db7f95a117c69aaeb38edb91ec4b0c83ab 100644 (file)
     // Keyboard events added:
     // Pressing the Enter key will open the tab pane.
     this.link.on('keydown', function (event) {
-      event.preventDefault();
       if (event.keyCode === 13) {
+        event.preventDefault();
         self.focus();
         // Set focus on the first input field of the visible details/tab pane.
         $(".vertical-tabs-pane :input:visible:enabled:first").trigger('focus');