Version 1
[yaffs-website] / web / core / modules / ckeditor / tests / modules / js / ajax-css.js
diff --git a/web/core/modules/ckeditor/tests/modules/js/ajax-css.js b/web/core/modules/ckeditor/tests/modules/js/ajax-css.js
new file mode 100644 (file)
index 0000000..142b4ee
--- /dev/null
@@ -0,0 +1,24 @@
+/**
+ * @file
+ * Contains client-side code for testing CSS delivered to CKEditor via AJAX.
+ */
+
+(function (Drupal, ckeditor, editorSettings, $) {
+
+  'use strict';
+
+  Drupal.behaviors.ajaxCssForm = {
+
+    attach: function (context) {
+      // Initialize an inline CKEditor on the #edit-inline element if it
+      // isn't editable already.
+      $(context)
+        .find('#edit-inline')
+        .not('[contenteditable]')
+        .each(function () {
+          ckeditor.attachInlineEditor(this, editorSettings.formats.test_format);
+        });
+    }
+  };
+
+})(Drupal, Drupal.editors.ckeditor, drupalSettings.editor, jQuery);