PageUEditor.js 208 B

123456789101112
  1. PageUEditor=function(options){
  2. this.editor=null;
  3. this.getEditor=function(options){
  4. if(!options){
  5. options={
  6. };
  7. }
  8. this.editor = new baidu.editor.ui.Editor(options);
  9. return this.editor;
  10. };
  11. };