2010-07-20 5 views

답변

0

이런 식으로 뭔가 작업을해야합니다 :

// Code to be inserted into the init function of a plugin 
ed.onDeactivate.add(function(ed) { 
    ed.save(); // or whatever you want to do to save the editor content 
    ed.remove(); // removes tinymce instance 
}); 
관련 문제