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="./au-input"></require> | |
<au-input value.bind="value" type="number" prefix.bind="prefix" suffix.bind="suffix" label.bind="label" view-model.ref="inputModel"></au-input> | |
<au-input value.bind="value" type="number" prefix="$$"></au-input> | |
</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> | |
<require from="./au-input"></require> | |
<au-input value.bind="value" label.bind="label" percent.bind="percent" salary.bind="salary"></au-input> | |
<button click.delegate="onClick()">Change</button> | |
</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> | |
<require from="./au-input"></require> | |
<au-input value.bind="value" label.bind="label" percent.bind="percent" salary.bind="salary"></au-input> | |
<au-input value.bind="value" label="label" percent.bind="percent" salary.bind="salary"></au-input> | |
<au-input value.bind="value2" label.bind="label" percent.bind="percent" salary.bind="salary"></au-input> | |
<button click.delegate="onClick()">Change</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="./au-input"></require> | |
<md-colors></md-colors> | |
<au-input label="A" value.bind="foo.a" percent.bind="foo.percent" salary.bind="foo.salary"></au-input> | |
<au-input label="B" value.bind="foo.b" percent.bind="foo.percent" salary.bind="foo.salary"></au-input> | |
<md-input md-label="Test" md-value.bind="foo.a & validate" md-validate="true" | |
md-validate-success="good"> |