Skip to content

Commit

Permalink
Update 2016-01-29T17:52:40.916Z
Browse files Browse the repository at this point in the history
  • Loading branch information
timaschew committed Jan 29, 2016
1 parent ebfa765 commit dce68c0
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 22 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 1.0.0-alpha4 (2016-01-28)

Improvements:

- put space (left and right) around piano keyboard to allow scrolling on small screens
- update course content (improve wording)

## 1.0.0-alpha3 (2016-01-26)

Bugfixes:
Expand All @@ -12,6 +19,7 @@ Improvements:
- show alert when browser doesn't support Web Audio to play notes
- improve focus/blur events for buttons
- provide form validation across different browser in feedback form
- allow zooming on touch devices (pinch)

## 1.0.0-alpha2 (2016-01-16)

Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
NProgress.set(0.0);
var req = new XMLHttpRequest();
req.addEventListener("progress", function(event) {
var percentComplete = event.loaded / (event.total||2468387);
var percentComplete = event.loaded / (event.total||2469080);
NProgress.set(percentComplete);
}, false);
req.addEventListener("load", function(event) {
Expand Down
Loading

0 comments on commit dce68c0

Please sign in to comment.