# HG changeset patch # User Nicholas Jillings # Date 1435246839 -3600 # Node ID 16737f53817cb2f8dc37f639b17d23fa85657e3e # Parent 6a3591c66c65d39f92db378eb261ef9ab06ed988# Parent 625a0f709a55f5b36c48ecbae51965e7805d3b11 Merge diff -r 625a0f709a55 -r 16737f53817c 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 625a0f709a55 -r 16737f53817c 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');