Tutorialzine


1 point by Tutorialzine 3 months ago | link | parent | top
cached 3 months ago
Absolutely agree. Making extensions for chrome is pure pleasure compared to Firefox. I think Google has a good strategy here..

1 point by Tutorialzine 8 months ago | link | parent | top
cached about 1 month ago
Hello Nathan, and thank you for the comment.

Actually the “off by one” bug is by design – it looks empty when the value of the dial is zero and the colorful ring around it is completely gone (and given it is midnight it would stay like this for an hour).

However you are free to change it – you’ll just need to change the line above from:

    var angle = (360/total)*(current+1); 
To something like this:

    var angle = (360/(total-1))*current;