# HG changeset patch # User Nicholas Jillings # Date 1435246811 -3600 # Node ID 6a3591c66c65d39f92db378eb261ef9ab06ed988 # Parent b04f0c228093c0a64b049801b5c35e92c093efb1 Bug Fix #1303 on main diff -r b04f0c228093 -r 6a3591c66c65 ape.js --- a/ape.js Fri Jun 19 12:53:40 2015 +0100 +++ b/ape.js Thu Jun 25 16:40:11 2015 +0100 @@ -334,6 +334,7 @@ // Delete any previous audioObjects associated with the audioEngine audioEngineContext.audioObjects = []; interfaceContext.deleteCommentBoxes(); + interfaceContext.deleteCommentQuestions(); // Find all the audioElements from the audioHolder $(audioHolderObject.audioElements).each(function(index,element){ diff -r b04f0c228093 -r 6a3591c66c65 core.js --- a/core.js Fri Jun 19 12:53:40 2015 +0100 +++ b/core.js Thu Jun 25 16:40:11 2015 +0100 @@ -1813,6 +1813,11 @@ return node; }; + this.deleteCommentQuestions = function() + { + this.commentQuestions = []; + }; + this.playhead = new function() { this.object = document.createElement('div');