From 0adcf472454bcfc4637448b67dffce7a696ede2f Mon Sep 17 00:00:00 2001 From: webchick <webchick@24967.no-reply.drupal.org> Date: Tue, 6 Aug 2013 23:21:26 -0700 Subject: [PATCH] Issue #2031529 by Wim Leers, oadaeh: Fixed JavaScript error when submitting a form that has a text_format() selector set to a text format without associated text editor. --- core/modules/editor/js/editor.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/modules/editor/js/editor.js b/core/modules/editor/js/editor.js index 5893e116075d..18493d6f8bd7 100644 --- a/core/modules/editor/js/editor.js +++ b/core/modules/editor/js/editor.js @@ -60,7 +60,10 @@ Drupal.behaviors.editor = { if (event.isDefaultPrevented()) { return; } - Drupal.editorDetach(field, settings.editor.formats[activeFormatID], 'serialize'); + // Detach the current editor (if any). + if (settings.editor.formats[activeFormatID]) { + Drupal.editorDetach(field, settings.editor.formats[activeFormatID], 'serialize'); + } }); }); }, -- GitLab