Chris@0: /** Chris@0: * DO NOT EDIT THIS FILE. Chris@0: * See the following change record for more information, Chris@0: * https://www.drupal.org/node/2815083 Chris@0: * @preserve Chris@0: **/ Chris@0: Chris@0: (function (Drupal, Backbone) { Chris@0: Drupal.ckeditor.Model = Backbone.Model.extend({ Chris@0: defaults: { Chris@0: activeEditorConfig: null, Chris@0: Chris@0: $textarea: null, Chris@0: Chris@0: isDirty: false, Chris@0: Chris@0: hiddenEditorConfig: null, Chris@0: Chris@0: buttonsToFeatures: null, Chris@0: Chris@0: featuresMetadata: null, Chris@0: Chris@0: groupNamesVisible: false Chris@0: }, Chris@0: Chris@0: sync: function sync() { Chris@0: this.get('$textarea').val(JSON.stringify(this.get('activeEditorConfig'))); Chris@0: } Chris@0: }); Chris@0: })(Drupal, Backbone);