forked from angular/components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbutton-e2e.html
More file actions
36 lines (29 loc) · 935 Bytes
/
Copy pathbutton-e2e.html
File metadata and controls
36 lines (29 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<section>
<div>
<p>
isDisabled: {{isDisabled}}, clickCounter:
<span id="click-counter">{{clickCounter}}</span>
</p>
<button md-raised-button (click)="isDisabled=!isDisabled" id="disable-toggle">
Disable buttons
</button>
</div>
<button md-button [disabled]="isDisabled" (click)="clickCounter=clickCounter+1" id="test-button">
off
</button>
<button md-button color="primary" [disabled]="isDisabled">
off
</button>
<a href="http://www.google.com" md-button color="accent" [disabled]="isDisabled">
off
</a>
<button md-raised-button color="primary" [disabled]="isDisabled">
off
</button>
<button md-mini-fab [disabled]="isDisabled" aria-label="Check">
<md-icon class="md-24">check</md-icon>
</button>
<button md-icon-button color="accent" [disabled]="isDisabled" aria-label="Check">
<md-icon class="md-24">favorite</md-icon>
</button>
</section>