Mercurial > hg > webaudioevaluationtool
comparison core.js @ 2167:251c167bf42e
Fix for bugs #1671 and #1672
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Mon, 21 Mar 2016 13:46:31 +0000 |
parents | e75107c82178 |
children | 158e06debceb |
comparison
equal
deleted
inserted
replaced
2166:4e0504f39c87 | 2167:251c167bf42e |
---|---|
363 // Create the audio engine object | 363 // Create the audio engine object |
364 audioEngineContext = new AudioEngine(specification); | 364 audioEngineContext = new AudioEngine(specification); |
365 } | 365 } |
366 | 366 |
367 function createProjectSave(destURL) { | 367 function createProjectSave(destURL) { |
368 // Clear the window.onbeforeunload | |
369 window.onbeforeunload = null; | |
368 // Save the data from interface into XML and send to destURL | 370 // Save the data from interface into XML and send to destURL |
369 // If destURL is null then download XML in client | 371 // If destURL is null then download XML in client |
370 // Now time to render file locally | 372 // Now time to render file locally |
371 var xmlDoc = interfaceXMLSave(); | 373 var xmlDoc = interfaceXMLSave(); |
372 var parent = document.createElement("div"); | 374 var parent = document.createElement("div"); |