diff options
-rw-r--r-- | pyload/web/app/scripts/views/input/clickInput.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/web/app/scripts/views/input/clickInput.js b/pyload/web/app/scripts/views/input/clickInput.js index 873c81ce7..ca8a954b8 100644 --- a/pyload/web/app/scripts/views/input/clickInput.js +++ b/pyload/web/app/scripts/views/input/clickInput.js @@ -27,7 +27,7 @@ define(['jquery', 'backbone', 'underscore', 'helpers/gettext', './inputView'], f }, onClick: function(x,y) { - this.$el.val(x + "," + y); + this.$el.val(x + ',' + y); this.onChange(); }, @@ -40,4 +40,4 @@ define(['jquery', 'backbone', 'underscore', 'helpers/gettext', './inputView'], f } }); -});
\ No newline at end of file +}); |