24
1
Fork 0

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
No known key found for this signature in database
GPG Key ID: B8DB720BC383E172
1 changed files with 1 additions and 1 deletions

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();
};