MS Edge hacks
This commit is contained in:
parent
b840173429
commit
da82ef814b
2 changed files with 6 additions and 1 deletions
|
@ -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`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue