diff options
author | Stefan Weil <sw@weilnetz.de> | 2018-10-19 11:37:11 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-10-19 20:17:55 +0200 |
commit | c5d3febf37f739b9ffbab636914f2ab368f68bbb (patch) | |
tree | afaef37a4fc6fc46888cd7131ac5ebe8436efcfd /core/js/jquery-showpassword.js | |
parent | 543c8634340607c5dd088b9cbdcd85700222ee0b (diff) | |
download | nextcloud-server-c5d3febf37f739b9ffbab636914f2ab368f68bbb.tar.gz nextcloud-server-c5d3febf37f739b9ffbab636914f2ab368f68bbb.zip |
Add missing variable declarations
This fixes errors from LGTM like the following one:
Variable i is used like a local variable,
but is missing a declaration.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to 'core/js/jquery-showpassword.js')
-rw-r--r-- | core/js/jquery-showpassword.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/jquery-showpassword.js b/core/js/jquery-showpassword.js index 5d518c78bcb..de18c8068be 100644 --- a/core/js/jquery-showpassword.js +++ b/core/js/jquery-showpassword.js @@ -25,7 +25,7 @@ var $element = $(element); - $clone = $("<input />"); + var $clone = $("<input />"); // Name added for JQuery Validation compatibility // Element name is required to avoid script warning. |