Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / quickedit / js / models / AppModel.js
index 6c473ac97497a898fec96ed2ce1e5b796ba08f9a..bfd30ff0c576847bfebd57add63a9c0386e66853 100644 (file)
@@ -1,57 +1,19 @@
 /**
- * @file
- * A Backbone Model for the state of the in-place editing application.
- *
- * @see Drupal.quickedit.AppView
- */
+* 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';
-
-  /**
-   * @constructor
-   *
-   * @augments Backbone.Model
-   */
-  Drupal.quickedit.AppModel = Backbone.Model.extend(/** @lends Drupal.quickedit.AppModel# */{
-
-    /**
-     * @type {object}
-     *
-     * @prop {Drupal.quickedit.FieldModel} highlightedField
-     * @prop {Drupal.quickedit.FieldModel} activeField
-     * @prop {Drupal.dialog~dialogDefinition} activeModal
-     */
-    defaults: /** @lends Drupal.quickedit.AppModel# */{
-
-      /**
-       * The currently state='highlighted' Drupal.quickedit.FieldModel, if any.
-       *
-       * @type {Drupal.quickedit.FieldModel}
-       *
-       * @see Drupal.quickedit.FieldModel.states
-       */
+  Drupal.quickedit.AppModel = Backbone.Model.extend({
+    defaults: {
       highlightedField: null,
 
-      /**
-       * The currently state = 'active' Drupal.quickedit.FieldModel, if any.
-       *
-       * @type {Drupal.quickedit.FieldModel}
-       *
-       * @see Drupal.quickedit.FieldModel.states
-       */
       activeField: null,
 
-      /**
-       * Reference to a {@link Drupal.dialog} instance if a state change
-       * requires confirmation.
-       *
-       * @type {Drupal.dialog~dialogDefinition}
-       */
       activeModal: null
     }
 
   });
-
-}(Backbone, Drupal));
+})(Backbone, Drupal);
\ No newline at end of file