# HG changeset patch # User Nicholas Jillings # Date 1434106874 -3600 # Node ID 5a1313f44e933b6167d57580127ff84aa87fd882 # Parent aca24f269c56cb7bd70582aa9a62484555690fe8 Fixed bug where element comments disabled caused crash on page saving. diff -r aca24f269c56 -r 5a1313f44e93 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 aca24f269c56 -r 5a1313f44e93 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 @@