Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / contextual / js / views / RegionView.js
index e960db36bfd698e0b0266c65984f779a7019e8eb..51317695475b159027e7390cf0f490fea3a5a87e 100644 (file)
@@ -1,57 +1,34 @@
 /**
- * @file
- * A Backbone View that renders the visual view of a contextual region element.
- */
+* DO NOT EDIT THIS FILE.
+* See the following change record for more information,
+* https://www.drupal.org/node/2815083
+* @preserve
+**/
 
 (function (Drupal, Backbone, Modernizr) {
-
-  'use strict';
-
-  Drupal.contextual.RegionView = Backbone.View.extend(/** @lends Drupal.contextual.RegionView# */{
-
-    /**
-     * Events for the Backbone view.
-     *
-     * @return {object}
-     *   A mapping of events to be used in the view.
-     */
-    events: function () {
+  Drupal.contextual.RegionView = Backbone.View.extend({
+    events: function events() {
       var mapping = {
-        mouseenter: function () { this.model.set('regionIsHovered', true); },
-        mouseleave: function () {
+        mouseenter: function mouseenter() {
+          this.model.set('regionIsHovered', true);
+        },
+        mouseleave: function mouseleave() {
           this.model.close().blur().set('regionIsHovered', false);
         }
       };
-      // We don't want mouse hover events on touch.
+
       if (Modernizr.touchevents) {
         mapping = {};
       }
       return mapping;
     },
-
-    /**
-     * Renders the visual view of a contextual region element.
-     *
-     * @constructs
-     *
-     * @augments Backbone.View
-     */
-    initialize: function () {
+    initialize: function initialize() {
       this.listenTo(this.model, 'change:hasFocus', this.render);
     },
-
-    /**
-     * @inheritdoc
-     *
-     * @return {Drupal.contextual.RegionView}
-     *   The current contextual region view.
-     */
-    render: function () {
+    render: function render() {
       this.$el.toggleClass('focus', this.model.get('hasFocus'));
 
       return this;
     }
-
   });
-
-})(Drupal, Backbone, Modernizr);
+})(Drupal, Backbone, Modernizr);
\ No newline at end of file