summaryrefslogtreecommitdiffstats
path: root/public
diff options
context:
space:
mode:
Diffstat (limited to 'public')
-rw-r--r--public/js/app.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/public/js/app.js b/public/js/app.js
index 031c58245a..dba83f384c 100644
--- a/public/js/app.js
+++ b/public/js/app.js
@@ -726,7 +726,7 @@ function initIssue() {
return false;
});
- fileInput.addEventListener("change", function(event) {
+ fileInput.addEventListener("change", function() {
for (var index = 0; index < fileInput.files.length; index++) {
var file = fileInput.files[index];
@@ -752,9 +752,9 @@ function initIssue() {
this.value = "";
});
- $addButton.on("click", function() {
+ $addButton.on("click", function(evt) {
fileInput.click();
- return false;
+ evt.preventDefault();
});
}());