11-03-2020 18:43
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

Jogger
6
0
0
11-03-2020 18:43
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
When I run my clock face, I get a error for index.ha that says “myImg not defined” please help!
1 REPLY 1
11-16-2020 04:37
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post


Fitbit Developer
2266
575
1162
11-16-2020 04:37
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
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" />

