Small whitespace cleanup

This commit is contained in:
Andrew Patton 2014-07-25 17:48:26 -04:00
parent a447aecd95
commit ef430ae7ab

View file

@ -621,11 +621,9 @@ function initIssue() {
// Upload. // Upload.
(function() { (function() {
var $attachedList = $("#attached-list"); var $attachedList = $("#attached-list");
var $addButton = $("#attachments-button"); var $addButton = $("#attachments-button");
var files = [];
var files = []; var fileInput = document.getElementById("attachments-input");
var fileInput = document.getElementById("attachments-input");
if (fileInput === null) { if (fileInput === null) {
return; return;
@ -637,9 +635,9 @@ function initIssue() {
files.splice($parent.data("index"), 1); files.splice($parent.data("index"), 1);
$parent.remove(); $parent.remove();
}); });
var clickedButton = undefined; var clickedButton;
$('#issue-reply-btn,input[type="submit"]', fileInput.form).on('click', function() { $('#issue-reply-btn,input[type="submit"]', fileInput.form).on('click', function() {
clickedButton = this; clickedButton = this;
@ -651,7 +649,7 @@ function initIssue() {
$button.text("Submiting..."); $button.text("Submiting...");
}); });
fileInput.form.addEventListener("submit", function(event) { fileInput.form.addEventListener("submit", function(event) {
event.stopImmediatePropagation(); event.stopImmediatePropagation();
event.preventDefault(); event.preventDefault();