﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
10379	"""unescape"" undefined."	Siamot		"I'm using ckeditor in my ASP.Net MVC 3 project, which structs with jQuery 1.7.2 and jquery.easyui. 
In this project, I created a View with ckeditor textarea in it, while the page reloading, the explorer shows an error: ""unescape"" undefined.
Here is my way to init ckeditor:
{{{
var g_Editor;
function initCKEditor() {
    g_Editor = CKEDITOR.instances['txtContent'];
    if (g_Editor) {
        CKEDITOR.remove(g_Editor);
    };
    g_Editor = CKEDITOR.replace(""txtContent"");
    g_Editor.setData($(""#Content"").val());
}
}}}
And I use ""g_Editor"" to get data from the ckeditor textarea.
If the code is removed, the error ""'unescape' undefined"" is gone too...
Is there something wrong with my code?
Or this is a bug?"	Bug	closed	Normal		General	3.6.2	invalid		
