This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<require from="./my-attribute"></require> | |
<table> | |
<tr repeat.for="name of names"> | |
<td>Name</td> | |
<td my-attribute="value:${name};"></td> | |
</tr> | |
</table> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<router-view></router-view> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div>invisible<router-view name="toolbar"></router-view></div> | |
<div><router-view></router-view></div> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div> | |
<button md-button md-waves="color: light;">test</button> | |
</div> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<md-colors md-primary-color="#0084DE" md-accent-color="#FF9E5F"></md-colors> | |
<div> | |
<md-pagination md-pages="6" md-active-page.bind="activePage"></md-pagination> | |
</div> | |
<div> | |
active page: ${activePage} | |
</div> | |
<div> | |
<button md-button>accent</button> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<require from="./combined.html"></require> | |
<!--<div> | |
<md-range md-value.bind="rangeValue"></md-range> | |
<md-input md-label="put some text here" md-value.bind="rangeValue"></md-input><br /> | |
</div> | |
<div> | |
range: ${rangeValue} | |
</div>--> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<require from="./slider-value.html"></require> | |
<md-colors md-primary-color="#ee6e73" md-accent-color="#009688"></md-colors> | |
<section class="au-animate"> | |
<h2>YourChoices</h2> | |
<slider-value propertyName.two-way="retirementAge" label="Retirement Age" callback="onRetirementAgeChanged"></slider-value> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<require from="./combined.html"></require> | |
<!--<div> | |
<md-range md-value.bind="rangeValue"></md-range> | |
<md-input md-label="put some text here" md-value.bind="rangeValue"></md-input><br /> | |
</div> | |
<div> | |
range: ${rangeValue} | |
</div>--> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<!--<require from="./ag-grid"></require>--> | |
<ag-grid ref="myGrid" rowclicked.trigger="onRowClicked($event)" class="ag-fresh"></ag-grid> | |
<div> | |
<button click.delegate="addData()">add a row</button> | |
</div> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<ag-grid ref="myGrid" rowclicked.trigger="onRowClicked($event)" class="ag-blue"></ag-grid> | |
<div show.bind="selected"> | |
selected row: ${selected.make} ${selected.model} | |
</div> | |
<div> | |
<button click.delegate="addData()">add a row</button> | |
</div> | |
</template> |