# HG changeset patch # User Nicholas Jillings # Date 1504719898 -3600 # Node ID cae294cb0242313812fd20afa729fd996efaebf5 # Parent 3342bc1f325682a5b598a6adf38ff03be66af0ec# Parent 796daa52e3f8aaf985619b9a7846182acf85c445 Merge branch 'master' into vnext diff -r 3342bc1f3256 -r cae294cb0242 interfaces/ABX.js --- a/interfaces/ABX.js Wed Sep 06 14:50:00 2017 +0100 +++ b/interfaces/ABX.js Wed Sep 06 18:44:58 2017 +0100 @@ -271,6 +271,9 @@ }; this.updateLoading = function (progress) { // progress is a value from 0 to 100 indicating the current download state of media files + if (label == "X" || label == "x") { + this.playback.textContent = "Play"; + } if (progress != 100) { progress = String(progress); progress = progress.split('.')[0]; @@ -335,6 +338,9 @@ this.error = function () { // If there is an error with the audioObject, this will be called to indicate a failure }; + if (label == "X" || label == "x") { + this.enable(); + } }; // Ensure there are only two comparisons per page if (page.audioElements.length != 2) {