Bug 1284577 - Always insert the debug canvas first for visibility in screenshots. r=padenot

MozReview-Commit-ID: KxJLRDfzczz

--HG--
extra : rebase_source : 5f0a0315ebb6ccdea38b7650b1246920a94f7cab
This commit is contained in:
Andreas Pehrson 2016-09-29 10:37:04 +02:00
Родитель 6a76fb8143
Коммит 4c1c6df40c
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -66,7 +66,8 @@ AudioStreamAnalyser.prototype = {
*/
enableDebugCanvas: function() {
var cvs = this.debugCanvas = document.createElement("canvas");
document.getElementById("content").appendChild(cvs);
const content = document.getElementById("content");
content.insertBefore(cvs, content.children[0]);
// Easy: 1px per bin
cvs.width = this.analyser.frequencyBinCount;