summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Jacq <mig@mig5.net>2019-02-13 13:53:03 +1100
committerMiguel Jacq <mig@mig5.net>2019-02-13 13:53:03 +1100
commit044c4d0e6e27d9877482278a4bf4941bb4c42665 (patch)
treedfd29a21632dc25626c8e5305e12ede10bcccf0b
parent6c36fcb9539db1adf1ec47223e476c81290420d2 (diff)
downloadonionshare-044c4d0e6e27d9877482278a4bf4941bb4c42665.tar.gz
onionshare-044c4d0e6e27d9877482278a4bf4941bb4c42665.zip
fix missing bracket
-rw-r--r--share/static/js/receive.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/static/js/receive.js b/share/static/js/receive.js
index ed4d87e0..f247b4e4 100644
--- a/share/static/js/receive.js
+++ b/share/static/js/receive.js
@@ -31,7 +31,7 @@ form.onsubmit = function(event) {
xhr.onload = function() {
if (xhr.status == 200) {
uploadButton.innerHTML = 'Send Files';
- if (document.getElementByClassName('flashes') !=null)
+ if (document.getElementByClassName('flashes') !=null) {
var flashes = document.getElementByClassName('flashes')
}
}