Mercurial > hg > webaudioevaluationtool
comparison ape.js @ 459:f6c9f9e5400e Dev_main
Added AB test interface
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Mon, 11 Jan 2016 16:32:26 +0000 |
parents | c251206bdddf |
children | afbb999e97cb |
comparison
equal
deleted
inserted
replaced
458:46b4af266cdf | 459:f6c9f9e5400e |
---|---|
634 }; | 634 }; |
635 this.exportXMLDOM = function(audioObject) { | 635 this.exportXMLDOM = function(audioObject) { |
636 // Called by the audioObject holding this element. Must be present | 636 // Called by the audioObject holding this element. Must be present |
637 var obj = []; | 637 var obj = []; |
638 $(this.trackSliderObjects).each(function(i,trackObj){ | 638 $(this.trackSliderObjects).each(function(i,trackObj){ |
639 var node = document.createElement('value'); | 639 var node = storage.document.createElement('value'); |
640 node.setAttribute("interface-name",trackObj.getAttribute("interface-name")); | 640 node.setAttribute("interface-name",trackObj.getAttribute("interface-name")); |
641 node.textContent = convSliderPosToRate(trackObj); | 641 node.textContent = convSliderPosToRate(trackObj); |
642 obj.push(node); | 642 obj.push(node); |
643 }); | 643 }); |
644 | 644 |