Merge pull request #85 from magnebra/text_input_update
Change the text input bindings to catch more input eventsmaster
commit
fb5e2c78ec
|
@ -2979,7 +2979,7 @@ TODOS
|
||||||
svgCanvas.setSegType($(this).val());
|
svgCanvas.setSegType($(this).val());
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#text').keyup(function() {
|
$('#text').bind("keyup input", function() {
|
||||||
svgCanvas.setTextContent(this.value);
|
svgCanvas.setTextContent(this.value);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue