# HG changeset patch # User Nicholas Jillings # Date 1435246839 -3600 # Node ID e59d55826fdeae818885a2b90d98bbeb226a00e7 # Parent db0823f2210dbe979756dcdc4cf96b58d7da4950# Parent 1561ff0eda53c62d0be2f9f7e6459660141369fe Merge diff -r 1561ff0eda53 -r e59d55826fde ape.js --- a/ape.js Fri Jun 19 16:24:08 2015 +0100 +++ b/ape.js Thu Jun 25 16:40:39 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 1561ff0eda53 -r e59d55826fde core.js --- a/core.js Fri Jun 19 16:24:08 2015 +0100 +++ b/core.js Thu Jun 25 16:40:39 2015 +0100 @@ -1813,6 +1813,11 @@ return node; }; + this.deleteCommentQuestions = function() + { + this.commentQuestions = []; + }; + this.playhead = new function() { this.object = document.createElement('div');