aboutsummaryrefslogtreecommitdiffstats
path: root/docs/component-spec
diff options
context:
space:
mode:
Diffstat (limited to 'docs/component-spec')
-rw-r--r--docs/component-spec/annotationsSpec.js12
1 files changed, 10 insertions, 2 deletions
diff --git a/docs/component-spec/annotationsSpec.js b/docs/component-spec/annotationsSpec.js
index b4c8cd9d..29cb9c53 100644
--- a/docs/component-spec/annotationsSpec.js
+++ b/docs/component-spec/annotationsSpec.js
@@ -91,13 +91,21 @@ describe('Docs Annotations', function() {
}
});
});
- inject(function($rootScope, $compile, $templateCache) {
+ inject(function($rootScope, $compile, $templateCache, $rootElement, $animator) {
+ $animator.enabled(true);
url = '/page.html';
$scope = $rootScope.$new();
parent = angular.element('<div class="parent"></div>');
element = angular.element('<div data-url="' + url + '" foldout></div>');
- body.append(parent);
+
+ //we're injecting the element to the $rootElement since the changes in
+ //$animator only detect and perform animations if the root element has
+ //animations enabled. If the element is not apart of the DOM
+ //then animations are skipped.
parent.append(element);
+ $rootElement.append(parent);
+ body.append($rootElement);
+
$compile(parent)($scope);
$scope.$apply();
});