Replace nonexistent method onDelete call with execCommand("del") in textinput

This commit is contained in:
DanyaPostfactum 2012-11-30 20:32:50 +10:00
commit 8571bee037

View file

@ -150,7 +150,7 @@ var TextInput = function(parentNode, host) {
if (data)
host.onTextInput(data);
} else
host.onDelete();
host.execCommand("del", {source: "ace"});
};
var onCompositionStart = function(e) {