Resettings
                只能设置依赖模块加载完成之后的相关配置或者使用拖动加载模块方式。
                Only be resetting the relevant configuration of dependent module loaded after, or using manually load modules mode.
     
            
            
                
                
                
                
                
                
                
                
                
                
            
            
            ####Resettings
```javascript
this.config("lineNumbers", false);
this.config({
    toc : false,
    tex : false,
    previewCodeHighlight : true, // before set previewCodeHighlight == false, editor not load pretty.js, so now codes can't highlight and line numbers.
    flowChart : false,
    sequenceDiagram : false,
    dialogLockScreen : false,
    dialogDraggable : false,
    dialogMaskBgColor : "teal",
    toolbar : true
});
this.config("onresize", function(){
    console.log("onresize =>", this);
});
```