comparison core/modules/quickedit/js/models/AppModel.js @ 0:4c8ae668cc8c

Initial import (non-working)
author Chris Cannam
date Wed, 29 Nov 2017 16:09:58 +0000
parents
children 129ea1e6d783
comparison
equal deleted inserted replaced
-1:000000000000 0:4c8ae668cc8c
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 });
19 })(Backbone, Drupal);