From 9ec12b5ff347f2fde7012fd05e2b9f62fb8a6f85 Mon Sep 17 00:00:00 2001 From: Marek Lewandowski Date: Wed, 25 Jul 2018 12:32:22 +0200 Subject: [PATCH] Corrected issue references. --- core/editor.js | 2 +- plugins/wysiwygarea/plugin.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/editor.js b/core/editor.js index 93244eaca33..76a2a3e4649 100644 --- a/core/editor.js +++ b/core/editor.js @@ -605,7 +605,7 @@ // Load all plugin specific language files in a row. CKEDITOR.scriptLoader.load( languageFiles, function() { - // Ensure the editor had not been destroyed in the meantime (https://dev.ckeditor.com/ticket/14613). + // Ensure the editor had not been destroyed in the meantime (#2257). if ( editor.status === 'destroyed' ) { return; } diff --git a/plugins/wysiwygarea/plugin.js b/plugins/wysiwygarea/plugin.js index df4772923ca..854f5c3e230 100644 --- a/plugins/wysiwygarea/plugin.js +++ b/plugins/wysiwygarea/plugin.js @@ -124,7 +124,7 @@ doc = win.document, body = doc.body; - // Check if editor had been destroyed (https://dev.ckeditor.com/ticket/14613). + // Check if editor had been destroyed (#2257). if ( !editor ) { return; }