ea044b8ba18770d98e8901a4c7c0a4981ba8c463
[yaffs-website] / web / core / modules / quickedit / js / models / EditorModel.js
1 /**
2 * DO NOT EDIT THIS FILE.
3 * See the following change record for more information,
4 * https://www.drupal.org/node/2815083
5 * @preserve
6 **/
7
8 (function (Backbone, Drupal) {
9   Drupal.quickedit.EditorModel = Backbone.Model.extend({
10     defaults: {
11       originalValue: null,
12
13       currentValue: null,
14
15       validationErrors: null
16     }
17
18   });
19 })(Backbone, Drupal);