﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
8709	Second Time Click Not Editable in Chrome	mayank.singh		"I'm using ckEditor 3.6.2 inside modal popup and in Chrome when I second Time click to load popup along with ckEditor it is not editable to enter text. The issue which I traced is that second time the editor is not created completely. TD with id ""ck_contents"" which contains iframe is created partially second time.

The code snippet I'm using to create and destroy ckEditor:

function loadEditor()
{
//Destroy
 for (k in CKEDITOR.instances) {
        var instance = CKEDITOR.instances[k];
        instance.destroy(true);
        instance = null;
    }

//Create
var config = {
        height: 250,
        width: 530,
        startupFocus: true
    };
$('#textEditor').ckeditor(config);
}

But still the issue is same in Chrome. This is works fine in IE and FF, but unfortunately its not working in Chrome. Please help me get over this issue as its little urgent and I have been looking for this issue from last 3-4days.

Any help will be appreciated."	Bug	closed	Normal		General	3.6.2	duplicate		
