diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2014-06-01 14:18:09 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2014-06-01 14:18:09 +0200 |
commit | 9aa62273c897f67f0fd12b8d6e3bb3ea78e3be7a (patch) | |
tree | 624986a4478a32b11f3f405222a7dc18ac2129af | |
parent | implemented click captchas (diff) | |
download | pyload-9aa62273c897f67f0fd12b8d6e3bb3ea78e3be7a.tar.xz |
fixed js hint
-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 +}); |