Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / quickedit / js / models / EditorModel.js
index 4b6177bc43fdb007930359539f071e6363246ad9..ea044b8ba18770d98e8901a4c7c0a4981ba8c463 100644 (file)
@@ -1,54 +1,19 @@
 /**
- * @file
- * A Backbone Model for the state of an in-place editor.
- *
- * @see Drupal.quickedit.EditorView
- */
+* 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.EditorModel = Backbone.Model.extend(/** @lends Drupal.quickedit.EditorModel# */{
-
-    /**
-     * @type {object}
-     *
-     * @prop {string} originalValue
-     * @prop {string} currentValue
-     * @prop {Array} validationErrors
-     */
-    defaults: /** @lends Drupal.quickedit.EditorModel# */{
-
-      /**
-       * Not the full HTML representation of this field, but the "actual"
-       * original value of the field, stored by the used in-place editor, and
-       * in a representation that can be chosen by the in-place editor.
-       *
-       * @type {string}
-       */
+  Drupal.quickedit.EditorModel = Backbone.Model.extend({
+    defaults: {
       originalValue: null,
 
-      /**
-       * Analogous to originalValue, but the current value.
-       *
-       * @type {string}
-       */
       currentValue: null,
 
-      /**
-       * Stores any validation errors to be rendered.
-       *
-       * @type {Array}
-       */
       validationErrors: null
     }
 
   });
-
-}(Backbone, Drupal));
+})(Backbone, Drupal);
\ No newline at end of file