EditorModel.js 361 B

123456789101112131415161718
  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);