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

Commit

Permalink
fix(examples): do not use shadow DOM
Browse files Browse the repository at this point in the history
This is in preparation for implementing the Testability API and Protractor
end-to-end tests since chromedriver can't handle shadowDom references.
  • Loading branch information
chirayuk authored and jbdeboer committed Jul 8, 2014
1 parent 076345c commit 0cf209b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions example/web/animation/repeat_demo.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ part of animation;

@Component(
selector: 'repeat-demo',
useShadowDom: false,
template: '''
<div class="repeat-demo">
<button ng-click="ctrl.addItem()">Add Thing</button>
Expand Down
2 changes: 1 addition & 1 deletion example/web/animation/visibility_demo.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ part of animation;
</div>
''',
publishAs: 'ctrl',
applyAuthorStyles: true)
useShadowDom: false)
class VisibilityDemo {
bool visible = false;
}

0 comments on commit 0cf209b

Please sign in to comment.