Skip to content

Commit ec7b5e9

Browse files
authored
Merge pull request #1674 from jmfolds/ie11-multidrag-fix
add MSCSSMatrix to matrixFn options
2 parents 118828d + caca04a commit ec7b5e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ function matrix(el, selfOnly) {
122122
} while (!selfOnly && (el = el.parentNode));
123123
}
124124

125-
const matrixFn = window.DOMMatrix || window.WebKitCSSMatrix || window.CSSMatrix;
125+
const matrixFn = window.DOMMatrix || window.WebKitCSSMatrix || window.CSSMatrix || window.MSCSSMatrix;
126126
/*jshint -W056 */
127127
return matrixFn && (new matrixFn(appliedTransforms));
128128
}

0 commit comments

Comments
 (0)