-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
The problem occurred when ckeditor was attached to the slider.
The problem is chrome makes contenteditable false when the parent div is hidden.
possible solutions bu not working for me. Need more investigation
-webkit-user-modify: read-write;
$('.text').click(function() {
var name;
for(name in CKEDITOR.instances) {
var instance = CKEDITOR.instances[name];
if(this && this == instance.element.$) {
return;
}
}
$(this).attr('contenteditable', true);
CKEDITOR.inline(this);
});