Skip to content

Commit

Permalink
Merge pull request #1674 from jmfolds/ie11-multidrag-fix
Browse files Browse the repository at this point in the history
add MSCSSMatrix to matrixFn options
  • Loading branch information
owen-m1 authored Oct 23, 2019
2 parents 118828d + caca04a commit ec7b5e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ function matrix(el, selfOnly) {
} while (!selfOnly && (el = el.parentNode));
}

const matrixFn = window.DOMMatrix || window.WebKitCSSMatrix || window.CSSMatrix;
const matrixFn = window.DOMMatrix || window.WebKitCSSMatrix || window.CSSMatrix || window.MSCSSMatrix;
/*jshint -W056 */
return matrixFn && (new matrixFn(appliedTransforms));
}
Expand Down

0 comments on commit ec7b5e9

Please sign in to comment.