@@ -647,10 +647,11 @@ angular.module('ngAnimate', ['ng'])
647
647
return ;
648
648
}
649
649
650
+ var ONE_SPACE = ' ' ;
650
651
//this value will be searched for class-based CSS className lookup. Therefore,
651
652
//we prefix and suffix the current className value with spaces to avoid substring
652
653
//lookups of className tokens
653
- var futureClassName = ' ' + currentClassName + ' ' ;
654
+ var futureClassName = ONE_SPACE + currentClassName + ONE_SPACE ;
654
655
if ( ngAnimateState . running ) {
655
656
//if an animation is currently running on the element then lets take the steps
656
657
//to cancel that animation and fire any required callbacks
@@ -671,16 +672,16 @@ angular.module('ngAnimate', ['ng'])
671
672
//will be invalid. Therefore the same string manipulation that would occur within the
672
673
//DOM operation will be performed below so that the class comparison is valid...
673
674
futureClassName = ngAnimateState . event == 'removeClass' ?
674
- futureClassName . replace ( ngAnimateState . className , '' ) :
675
- futureClassName + ngAnimateState . className + ' ' ;
675
+ futureClassName . replace ( ONE_SPACE + ngAnimateState . className + ONE_SPACE , ONE_SPACE ) :
676
+ futureClassName + ngAnimateState . className + ONE_SPACE ;
676
677
}
677
678
}
678
679
679
680
//There is no point in perform a class-based animation if the element already contains
680
681
//(on addClass) or doesn't contain (on removeClass) the className being animated.
681
682
//The reason why this is being called after the previous animations are cancelled
682
683
//is so that the CSS classes present on the element can be properly examined.
683
- var classNameToken = ' ' + className + ' ' ;
684
+ var classNameToken = ONE_SPACE + className + ONE_SPACE ;
684
685
if ( ( animationEvent == 'addClass' && futureClassName . indexOf ( classNameToken ) >= 0 ) ||
685
686
( animationEvent == 'removeClass' && futureClassName . indexOf ( classNameToken ) == - 1 ) ) {
686
687
fireDOMOperation ( ) ;
0 commit comments