Change the text input bindings to catch more input events

This commit is contained in:
Magne Bratseth
2016-03-11 12:06:10 +01:00
parent bd55ce3bf5
commit 9fdb305fb5

View File

@@ -2961,7 +2961,7 @@ TODOS
svgCanvas.setSegType($(this).val());
});
$('#text').keyup(function() {
$('#text').bind("change keyup input", function() {
svgCanvas.setTextContent(this.value);
});