comparison ape.js @ 1570:7ee505b380b0

Fix for Bug #1280
author Nicholas Jillings <nickjillings@users.noreply.github.com>
date Tue, 16 Jun 2015 14:38:47 +0100
parents 16707c08b0eb
children ab79d76c6f85
comparison
equal deleted inserted replaced
1569:16707c08b0eb 1570:7ee505b380b0
243 audioHolderObject.audioElements = randomiseOrder(audioHolderObject.audioElements); 243 audioHolderObject.audioElements = randomiseOrder(audioHolderObject.audioElements);
244 } 244 }
245 245
246 // Delete any previous audioObjects associated with the audioEngine 246 // Delete any previous audioObjects associated with the audioEngine
247 audioEngineContext.audioObjects = []; 247 audioEngineContext.audioObjects = [];
248 interfaceContext.deleteCommentBoxes();
248 249
249 // Find all the audioElements from the audioHolder 250 // Find all the audioElements from the audioHolder
250 $(audioHolderObject.audioElements).each(function(index,element){ 251 $(audioHolderObject.audioElements).each(function(index,element){
251 // Find URL of track 252 // Find URL of track
252 // In this jQuery loop, variable 'this' holds the current audioElement. 253 // In this jQuery loop, variable 'this' holds the current audioElement.