Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / toolbar / js / views / MenuVisualView.js
index 92dea215bf2cd2e8ccdfa2b720c11376ce1d2e5c..a9cd1a30f6a4b11bd2d7395c617f45fd8af84fb7 100644 (file)
@@ -1,46 +1,27 @@
 /**
- * @file
- * A Backbone view for the collapsible menus.
- */
+* DO NOT EDIT THIS FILE.
+* See the following change record for more information,
+* https://www.drupal.org/node/2815083
+* @preserve
+**/
 
 (function ($, Backbone, Drupal) {
-
-  'use strict';
-
-  Drupal.toolbar.MenuVisualView = Backbone.View.extend(/** @lends Drupal.toolbar.MenuVisualView# */{
-
-    /**
-     * Backbone View for collapsible menus.
-     *
-     * @constructs
-     *
-     * @augments Backbone.View
-     */
-    initialize: function () {
+  Drupal.toolbar.MenuVisualView = Backbone.View.extend({
+    initialize: function initialize() {
       this.listenTo(this.model, 'change:subtrees', this.render);
     },
-
-    /**
-     * @inheritdoc
-     */
-    render: function () {
+    render: function render() {
       var subtrees = this.model.get('subtrees');
-      // Add subtrees.
+
       for (var id in subtrees) {
         if (subtrees.hasOwnProperty(id)) {
-          this.$el
-            .find('#toolbar-link-' + id)
-            .once('toolbar-subtrees')
-            .after(subtrees[id]);
+          this.$el.find('#toolbar-link-' + id).once('toolbar-subtrees').after(subtrees[id]);
         }
       }
-      // Render the main menu as a nested, collapsible accordion.
+
       if ('drupalToolbarMenu' in $.fn) {
-        this.$el
-          .children('.toolbar-menu')
-          .drupalToolbarMenu();
+        this.$el.children('.toolbar-menu').drupalToolbarMenu();
       }
     }
   });
-
-}(jQuery, Backbone, Drupal));
+})(jQuery, Backbone, Drupal);
\ No newline at end of file