convert autoScrollEditorIntoView into preoper option

This commit is contained in:
nightwing 2014-01-30 21:09:25 +04:00
commit 4ed6afc829

View file

@ -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",