Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / misc / tabbingmanager.js
index 2d0b92716d96656617b6bffe15a0ca70d6a78b48..c912c92684e8e92bf62d2672c9f872c70cc82cdd 100644 (file)
     this.stack = [];
   }
 
+  function TabbingContext(options) {
+    $.extend(this, {
+      level: null,
+
+      $tabbableElements: $(),
+
+      $disabledElements: $(),
+
+      released: false,
+
+      active: false
+    }, options);
+  }
+
   $.extend(TabbingManager.prototype, {
     constrain: function constrain(elements) {
       var il = this.stack.length;
     }
   });
 
-  function TabbingContext(options) {
-    $.extend(this, {
-      level: null,
-
-      $tabbableElements: $(),
-
-      $disabledElements: $(),
-
-      released: false,
-
-      active: false
-    }, options);
-  }
-
   $.extend(TabbingContext.prototype, {
     release: function release() {
       if (!this.released) {