MS Edge hacks

This commit is contained in:
Danny Coates 2018-03-12 12:24:09 -07:00
parent b840173429
commit da82ef814b
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
2 changed files with 6 additions and 1 deletions

View file

@ -7,6 +7,10 @@ const oDiameter = oRadius * 2;
const circumference = 2 * Math.PI * radius;
module.exports = function(progressRatio, indefinite = false) {
// HACK - never indefinite for MS Edge
if (/edge/i.test(navigator.userAgent)) {
indefinite = false;
}
const p = indefinite ? 0.2 : progressRatio;
const dashOffset = (1 - p) * circumference;
const progressPercent = html`