when a click causes the editor to be focused ignore

it. fix #168
This commit is contained in:
Fabian Jakobs 2011-07-22 13:06:45 +02:00
commit 4dfe33655e
3 changed files with 17 additions and 1 deletions

View file

@ -271,6 +271,10 @@ var Editor =function(renderer, session) {
}
this.textInput.focus();
};
this.isFocused = function() {
return this.textInput.isFocused();
};
this.blur = function() {
this.textInput.blur();