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>Instructions</h1> | |
<ol> | |
<li>Click the "Set value" button (selected option changes correctly)</li> | |
<li>Increment number to 3</li> | |
<li>Click the "Set options and value" button (selected option is not set correctly)</li> | |
</ol> | |
<select value.bind="matchGame.winner.id"> |
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>Dialog Repro</h1> | |
<button click.delegate="submit()">Open Dialog</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="./select2-custom-attribute"></require> | |
<require from="./debug"></require> | |
<h1>Standard Select</h1> | |
<select value.bind="selectedThings" style="width: 100%"> | |
<option repeat.for="thing of things" model.bind="thing">${thing.name}</option> | |
</select> | |
<h1>Select2</h1> |