AppModel.js 355 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.AppModel = Backbone.Model.extend({
  9. defaults: {
  10. highlightedField: null,
  11. activeField: null,
  12. activeModal: null
  13. }
  14. });
  15. })(Backbone, Drupal);