vendor/assets/javascripts/angular-animate.js in angular-gem-1.2.6 vs vendor/assets/javascripts/angular-animate.js in angular-gem-1.2.7
- old
+ new
@@ -1,7 +1,7 @@
/**
- * @license AngularJS v1.2.6
+ * @license AngularJS v1.2.7
* (c) 2010-2014 Google, Inc. http://angularjs.org
* License: MIT
*/
(function(window, angular, undefined) {'use strict';
@@ -614,13 +614,18 @@
closeAnimation();
return;
}
var animations = [];
+
//only add animations if the currently running animation is not structural
//or if there is no animation running at all
- if(!ngAnimateState.running || !(isClassBased && ngAnimateState.structural)) {
+ var allowAnimations = isClassBased ?
+ !ngAnimateState.disabled && (!ngAnimateState.running || !ngAnimateState.structural) :
+ true;
+
+ if(allowAnimations) {
forEach(matches, function(animation) {
//add the animation to the queue to if it is allowed to be cancelled
if(!animation.allowCancel || animation.allowCancel(element, animationEvent, className)) {
var beforeFn, afterFn = animation[animationEvent];
@@ -1145,10 +1150,10 @@
var style = '', appliedStyles = [];
if(timings.transitionDuration > 0) {
var propertyStyle = timings.transitionPropertyStyle;
if(propertyStyle.indexOf('all') == -1) {
style += CSS_PREFIX + 'transition-property: ' + propertyStyle + ';';
- style += CSS_PREFIX + 'transition-duration: ' + timings.transitionDurationStyle + 's;';
+ style += CSS_PREFIX + 'transition-duration: ' + timings.transitionDurationStyle + ';';
appliedStyles.push(CSS_PREFIX + 'transition-property');
appliedStyles.push(CSS_PREFIX + 'transition-duration');
}
}