11-03-2020 18:43
11-03-2020 18:43
When I run my clock face, I get a error for index.ha that says “myImg not defined” please help!
11-16-2020 04:37
Fitbit Developers oversee the SDK and API forums. We're here to answer questions about Fitbit developer tools, assist with projects, and make sure your voice is heard by the development team.
11-16-2020 04:37
It's hard to say without seeing code, but I imagine you have something like this in your app/index.js
var myImg = document.getElementById("myImg");
In order for that to work, you'd need to have an image declared in your svg file like this:
<image id="myImg" href="something.png" />
Best Answer