Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Commit 0cf209b

Browse files
chirayukjbdeboer
authored andcommitted
fix(examples): do not use shadow DOM
This is in preparation for implementing the Testability API and Protractor end-to-end tests since chromedriver can't handle shadowDom references.
1 parent 076345c commit 0cf209b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

example/web/animation/repeat_demo.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ part of animation;
22

33
@Component(
44
selector: 'repeat-demo',
5+
useShadowDom: false,
56
template: '''
67
<div class="repeat-demo">
78
<button ng-click="ctrl.addItem()">Add Thing</button>

example/web/animation/visibility_demo.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ part of animation;
1717
</div>
1818
''',
1919
publishAs: 'ctrl',
20-
applyAuthorStyles: true)
20+
useShadowDom: false)
2121
class VisibilityDemo {
2222
bool visible = false;
2323
}

0 commit comments

Comments
 (0)