EditorModel.js 362 B

12345678910111213141516171819
  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. (function (Backbone, Drupal) {
  8. Drupal.quickedit.EditorModel = Backbone.Model.extend({
  9. defaults: {
  10. originalValue: null,
  11. currentValue: null,
  12. validationErrors: null
  13. }
  14. });
  15. })(Backbone, Drupal);