ui/app/initializers/polyfill-svg.js

15 lines
402 B
JavaScript

export function initialize( /* application*/ ) {
// http://jointjs.com/blog/get-transform-to-element-polyfill.html
if ( !SVGElement.prototype.getTransformToElement ) {
SVGElement.prototype.getTransformToElement = function(toElement) {
return toElement.getScreenCTM().inverse()
.multiply(this.getScreenCTM());
};
}
}
export default {
name: 'polyfill-svg',
initialize
};