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> | |
<div> | |
<p><a md-button md-modal-trigger href="#modal1">show modal</a></p> | |
</div> | |
<div id="modal1" class="modal" ref="myModal"> | |
<div class="modal-content"> | |
<h4>Modal Header</h4> | |
<p>A bunch of text</p> | |
<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
md-card .card { | |
background-color: transparent; | |
} |
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> | |
<h1>watch the data grow</h1> | |
${data.length} | |
${data} | |
</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="./jsonValueConverter"></require> | |
<h1>watch the data grow</h1> | |
${data.length} | |
${data|json} | |
</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> | |
<select value.two-way="selectedMeal"> | |
<option disabled model.bind="null">Select your meal</option> | |
<option repeat.for="meal of food" model.bind="meal">${meal.name}</option> | |
</select> | |
</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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Aurelia</title> | |
</head> | |
<body aurelia-app="main"> | |
<script src="scripts/vendor-bundle.js" data-main="aurelia-bootstrapper"></script> | |
</body> | |
</html> |
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-carousel> | |
<md-carousel-item repeat.for="img of images" md-image.bind="img.url"></md-carousel-item> | |
</md-carousel> | |
</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> | |
<form role="form"> | |
<div class="col s12 m6 push-m3 l4 push-l4"> | |
<div class="row"> | |
<div class="input-field col s12"> | |
<select md-select value.two-way="residingAddress.country"> | |
<option value="" disabled>Select Country of residence..</option> | |
<option repeat.for="country of countryList" value.bind="country.code">${country.name}</option> | |
</select> | |
<label class="active" for="country">Country</label> |
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="./auto-width"></require> | |
<div auto-width="calculate-width.bind: inputValue;"> | |
<select md-select value.two-way="inputValue"> | |
<option value="" disabled selected>select an item</option> | |
<option value="item 1">item 1</option> | |
<option value="item longer">item longer</option> | |
<option value="item even longer">item even longer</option> | |
</select> | |
</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="./auto-width"></require> | |
<md-input md-label="put some text here" md-value.bind="inputValue2" auto-width></md-input> | |
</template> |