removed unwanted comment

Co-authored-by: timvisee <tim@visee.me>
This commit is contained in:
Ashesh Vidyut
2019-03-21 00:27:52 +05:30
committed by timvisee
parent 0eda8d2082
commit e53571e219

View File

@@ -31,7 +31,7 @@ module.exports.updateFavicon = function(percentageString) {
context.beginPath();
context.arc(0, 0, radius, 0, Math.PI * 2 * percent, false);
context.strokeStyle = color;
context.lineCap = 'square'; // butt, round or square
context.lineCap = 'square';
context.lineWidth = lineWidth;
context.stroke();
};