diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-07-28 22:57:07 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-07-28 22:57:07 +0200 |
commit | ed7e4df0142c51096ef7f1219d80289ad3d14085 (patch) | |
tree | 9e38129181731117e3155611f078a4ade593dab8 | |
parent | 3bf2935ee363a784f0140242b569eb4e2a837249 (diff) | |
download | volse-hubzilla-ed7e4df0142c51096ef7f1219d80289ad3d14085.tar.gz volse-hubzilla-ed7e4df0142c51096ef7f1219d80289ad3d14085.tar.bz2 volse-hubzilla-ed7e4df0142c51096ef7f1219d80289ad3d14085.zip |
missing semicolon
-rw-r--r-- | view/js/mod_cloud.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/js/mod_cloud.js b/view/js/mod_cloud.js index cdcb0c8ee..6d6ef9fd1 100644 --- a/view/js/mod_cloud.js +++ b/view/js/mod_cloud.js @@ -159,7 +159,7 @@ function getIconFromType(type) { // upload files function UploadFile(file, idx) { - window.filesToUpload = window.filesToUpload + 1 + window.filesToUpload = window.filesToUpload + 1; var xhr = new XMLHttpRequest(); |