Skip to content

Commit

Permalink
bug fixes and enhancements
Browse files Browse the repository at this point in the history
  • Loading branch information
ThunderStruct committed Dec 2, 2017
1 parent 54e1fcf commit 32b45c5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 1.2.1 - 2017-12-2
### Fixed
- A bug that prevented loading user handles from a file

## 1.2.0 - 2017-11-29
### Added
- Removing a submission ID from the cancelled submissions list
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
</div>
</td>
<td> <button class="setup-file-btn" type="button" title="Add Users File" id="addUserFileBtn" style="font-size: 10px;">Choose a file <i class="fa fa-upload" style="padding-left: 5px;"></i></button>
<div class="hide_file"><input type="file" id="fileInput"/></div> </td>
<div class="hide-file"><input type="file" id="fileInput" /></div> </td>
</tr>

<tr>
Expand Down
2 changes: 1 addition & 1 deletion js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ $(window).ready(function() {
$('#copyrightLbl').text(copyrightText);

$('#fileInput').change(function (){
var file = $('#fileInput').files[0];
var file = $('#fileInput')[0].files[0];
readFile(file);
});

Expand Down
2 changes: 1 addition & 1 deletion styles/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ input[type="text"]:focus {
transition: all 20ms linear;
}

.hide_file {
.hide-file {
display: none;
}

Expand Down

0 comments on commit 32b45c5

Please sign in to comment.