Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / ckeditor / js / models / Model.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 (Drupal, Backbone) {
9   Drupal.ckeditor.Model = Backbone.Model.extend({
10     defaults: {
11       activeEditorConfig: null,
12
13       $textarea: null,
14
15       isDirty: false,
16
17       hiddenEditorConfig: null,
18
19       buttonsToFeatures: null,
20
21       featuresMetadata: null,
22
23       groupNamesVisible: false
24     },
25
26     sync: function sync() {
27       this.get('$textarea').val(JSON.stringify(this.get('activeEditorConfig')));
28     }
29   });
30 })(Drupal, Backbone);