diff --git a/dom/animate/animate.js b/dom/animate/animate.js index 47f965b5..e46addb9 100644 --- a/dom/animate/animate.js +++ b/dom/animate/animate.js @@ -284,8 +284,9 @@ steal('jquery', function ($) { properties.push(prop); } - if(getBrowser().prefix === '-moz-') { + if(getBrowser().prefix === '-moz-' || /Edge\/\d+/.test(navigator.userAgent)) { // Normalize 'auto' properties in FF + // This is also needed in Edge (tested in 13) $.each(properties, function(i, prop) { var converter = ffProps[$.camelCase(prop)]; if(converter && self.css(prop) == 'auto') {