bb7ba0fb9a76e57f55c0bbc39f91c5024dfde220
[yaffs-website] / js / ajax-css.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, ckeditor, editorSettings, $) {
9   Drupal.behaviors.ajaxCssForm = {
10     attach: function attach(context) {
11       $(context).find('#edit-inline').not('[contenteditable]').each(function () {
12         ckeditor.attachInlineEditor(this, editorSettings.formats.test_format);
13       });
14     }
15   };
16 })(Drupal, Drupal.editors.ckeditor, drupalSettings.editor, jQuery);