Great work getting CKEditor in Fuel guys, made a lot of people happy campers!
I've stuck CKFinder alongside and all is working well except when the _only_ thing that is done in the editor is an image is inserted via the image button (which fires CKFinder).
I figure this is because:
Around line 607 in BaseFuelController we have:
this.document.on('keyup', function(e){
editor.updateElement();
});
I can live with that, hit enter and back space and it works...
Is there any reason though that this sync with the editor and real post input couldn't be done on form submit?
Comments
The problem is the textarea will only be updated on keyup. If you do other changes like formatting and stuff the changes aren't purged until keyup. Can't we also update just before submit?