From 32b45c5c744b255c6b3f54cdd1e5153e9ed1d5f3 Mon Sep 17 00:00:00 2001 From: ThunderStruct Date: Sat, 2 Dec 2017 09:09:19 +0200 Subject: [PATCH] bug fixes and enhancements --- CHANGELOG.md | 4 ++++ index.html | 2 +- js/index.js | 2 +- styles/index.css | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c9e5bf0..8451bd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/index.html b/index.html index 237e449..5777c63 100644 --- a/index.html +++ b/index.html @@ -71,7 +71,7 @@ -
+
diff --git a/js/index.js b/js/index.js index 3c47e0e..e55d317 100644 --- a/js/index.js +++ b/js/index.js @@ -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); }); diff --git a/styles/index.css b/styles/index.css index f7bb596..48bf154 100644 --- a/styles/index.css +++ b/styles/index.css @@ -120,7 +120,7 @@ input[type="text"]:focus { transition: all 20ms linear; } -.hide_file { +.hide-file { display: none; }