diff --git a/components/animation-timeline/dist/aframe-animation-timeline-component.js b/components/animation-timeline/dist/aframe-animation-timeline-component.js index 431058ff..8f4e6b9d 100644 --- a/components/animation-timeline/dist/aframe-animation-timeline-component.js +++ b/components/animation-timeline/dist/aframe-animation-timeline-component.js @@ -54,7 +54,9 @@ loop: { default: 0, parse: function (value) { - // Boolean or integer. + // boolean + if(typeof value === 'boolean'){ return value; } + // String or integer. if (value === 'true') { return true; } if (value === 'false') { return false; } return parseInt(value, 10);