convert autoScrollEditorIntoView into preoper option
This commit is contained in:
parent
cd12b25ea6
commit
4ed6afc829
1 changed files with 5 additions and 2 deletions
|
|
@ -2310,7 +2310,7 @@ var Editor = function(renderer, session) {
|
|||
* @param {Boolean} enable default true
|
||||
**/
|
||||
this.setAutoScrollEditorIntoView = function(enable) {
|
||||
if (enable === false)
|
||||
if (!enable)
|
||||
return;
|
||||
var rect;
|
||||
var self = this;
|
||||
|
|
@ -2352,7 +2352,7 @@ var Editor = function(renderer, session) {
|
|||
}
|
||||
});
|
||||
this.setAutoScrollEditorIntoView = function(enable) {
|
||||
if (enable === true)
|
||||
if (enable)
|
||||
return;
|
||||
delete this.setAutoScrollEditorIntoView;
|
||||
this.removeEventListener("changeSelection", onChangeSelection);
|
||||
|
|
@ -2409,6 +2409,9 @@ config.defineOptions(Editor.prototype, "editor", {
|
|||
},
|
||||
behavioursEnabled: {initialValue: true},
|
||||
wrapBehavioursEnabled: {initialValue: true},
|
||||
autoScrollEditorIntoView: {
|
||||
set: function(val) {this.setAutoScrollEditorIntoView(val)}
|
||||
},
|
||||
|
||||
hScrollBarAlwaysVisible: "renderer",
|
||||
vScrollBarAlwaysVisible: "renderer",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue