Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / quickedit / js / models / AppModel.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.AppModel = Backbone.Model.extend({
10     defaults: {
11       highlightedField: null,
12
13       activeField: null,
14
15       activeModal: null
16     }
17   });
18 })(Backbone, Drupal);