Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / contextual / js / contextual.toolbar.es6.js
index 9538288d6c17c4f86be771c0a9bc2777a8daa18a..953f76496c96934a6ed715a5b25bb202cb80c810 100644 (file)
@@ -3,10 +3,14 @@
  * Attaches behaviors for the Contextual module's edit toolbar tab.
  */
 
-(function ($, Drupal, Backbone) {
+(function($, Drupal, Backbone) {
   const strings = {
-    tabbingReleased: Drupal.t('Tabbing is no longer constrained by the Contextual module.'),
-    tabbingConstrained: Drupal.t('Tabbing is constrained to a set of @contextualsCount and the edit mode toggle.'),
+    tabbingReleased: Drupal.t(
+      'Tabbing is no longer constrained by the Contextual module.',
+    ),
+    tabbingConstrained: Drupal.t(
+      'Tabbing is constrained to a set of @contextualsCount and the edit mode toggle.',
+    ),
     pressEsc: Drupal.t('Press the esc key to exit.'),
   };
 
     }
 
     const contextualToolbar = Drupal.contextualToolbar;
-    contextualToolbar.model = new contextualToolbar.StateModel({
-      // Checks whether localStorage indicates we should start in edit mode
-      // rather than view mode.
-      // @see Drupal.contextualToolbar.VisualView.persist
-      isViewing: localStorage.getItem('Drupal.contextualToolbar.isViewing') !== 'false',
-    }, {
-      contextualCollection: Drupal.contextual.collection,
-    });
+    contextualToolbar.model = new contextualToolbar.StateModel(
+      {
+        // Checks whether localStorage indicates we should start in edit mode
+        // rather than view mode.
+        // @see Drupal.contextualToolbar.VisualView.persist
+        isViewing:
+          localStorage.getItem('Drupal.contextualToolbar.isViewing') !==
+          'false',
+      },
+      {
+        contextualCollection: Drupal.contextual.collection,
+      },
+    );
 
     const viewOptions = {
       el: $('.toolbar .toolbar-bar .contextual-toolbar-tab'),
@@ -62,7 +71,6 @@
    * @namespace
    */
   Drupal.contextualToolbar = {
-
     /**
      * The {@link Drupal.contextualToolbar.StateModel} instance.
      *
@@ -70,4 +78,4 @@
      */
     model: null,
   };
-}(jQuery, Drupal, Backbone));
+})(jQuery, Drupal, Backbone);