# HG changeset patch # User Nicholas Jillings # Date 1434106874 -3600 # Node ID 6b6a713305476f7ba81dcb809024fbd703b3d766 # Parent d0c814afac4b76a14455219cf9d5c8f570508b3a Fixed bug where element comments disabled caused crash on page saving. diff -r d0c814afac4b -r 6b6a71330547 ape.js --- a/ape.js Wed Jun 10 10:13:45 2015 +0100 +++ b/ape.js Fri Jun 12 12:01:14 2015 +0100 @@ -271,9 +271,7 @@ var trackURL = audioHolderObject.hostURL + element.url; var audioObject = audioEngineContext.newTrack(element); - if (commentShow) { - var node = interfaceContext.createCommentBox(audioObject); - } + var node = interfaceContext.createCommentBox(audioObject); // Create a slider per track audioObject.interfaceDOM = new sliderObject(audioObject); diff -r d0c814afac4b -r 6b6a71330547 index.html --- a/index.html Wed Jun 10 10:13:45 2015 +0100 +++ b/index.html Fri Jun 12 12:01:14 2015 +0100 @@ -25,7 +25,7 @@