Mercurial > hg > webaudioevaluationtool
diff js/core.js @ 2559:c40cda1c2839
#175: Fixed alwaysInclude being ignored
author | Nicholas Jillings <nicholas.jillings@mail.bcu.ac.uk> |
---|---|
date | Thu, 19 Jan 2017 16:59:59 +0000 |
parents | bee11d64db84 |
children | d75db08e5801 |
line wrap: on
line diff
--- a/js/core.js Thu Jan 19 10:37:30 2017 +0000 +++ b/js/core.js Thu Jan 19 16:59:59 2017 +0000 @@ -1192,7 +1192,7 @@ var elemInclude = []; var elemPool = []; for (var elem of pageInclude[i].audioElements) { - if (elem.include || elem.type != "normal") { + if (elem.alwaysInclude || elem.type != "normal") { elemInclude.push(elem); } else { elemPool.push(elem);