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> | |
<input type="checkbox" checked.bind="isChecked" /><br> | |
${text} | |
</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> | |
About us! | |
</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> | |
<ul> | |
<li repeat.for="item of array | sort:theConfig">${item}</li> | |
</ul> | |
</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="./dynamic-expression-binding-behavior"></require> | |
<require from="./debug"></require> | |
<form role="form"> | |
<div class="form-group col-sm-7" repeat.for="field of fields"> | |
<label for="${field.expression}"> | |
${field.label}: | |
</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="./button-row"></require> | |
<button-row repeat.for="btnRow of btnRowArray" label.bind="btnRow.label" buttons.bind="btnRow.buttons"></button-row> | |
</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> | |
See console | |
<button click.delegate="change()">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="./sortable-custom-attribute"></require> | |
<ul sortable="array.bind: left; options.bind: { group: 'test' }"> | |
<li repeat.for="item of left">${item}</li> | |
</ul> | |
<ul sortable="array.bind: right; options.bind: { group: 'test' }"> | |
<li repeat.for="item of right">${item}</li> | |
</ul> | |
</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 style="height: 125px; min-width: 150px; width: 100%;" ref="canvasContainer"> | |
<canvas ref="canvas" width.one-way="canvasContainer.offsetWidth"></canvas> | |
</div> | |
</template> |
NewerOlder