From d03d50dc3bc62a00f03d46df2de8150d81565f55 Mon Sep 17 00:00:00 2001 From: Magne Bratseth Date: Mon, 14 Mar 2016 08:01:42 +0100 Subject: [PATCH] Remove binding of change - 'input' is sufficient --- editor/svg-editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/svg-editor.js b/editor/svg-editor.js index 59d3dcea..58690434 100644 --- a/editor/svg-editor.js +++ b/editor/svg-editor.js @@ -2961,7 +2961,7 @@ TODOS svgCanvas.setSegType($(this).val()); }); - $('#text').bind("change keyup input", function() { + $('#text').bind("keyup input", function() { svgCanvas.setTextContent(this.value); });