From 4f3719d27a78d975d79def8e92e3fe4fecd19787 Mon Sep 17 00:00:00 2001 From: Fabian Jakobs Date: Fri, 29 Jul 2011 11:13:18 +0200 Subject: [PATCH] enable behaviors by default to give this code better testing coverage. --- lib/ace/editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ace/editor.js b/lib/ace/editor.js index 6102864b..642cbac3 100644 --- a/lib/ace/editor.js +++ b/lib/ace/editor.js @@ -644,7 +644,7 @@ var Editor =function(renderer, session) { return this.$readOnly; }; - this.$modeBehaviours = false; + this.$modeBehaviours = true; this.setBehavioursEnabled = function (enabled) { this.$modeBehaviours = enabled; }