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>Keyboard Events binding example</h1> | |
<div> | |
<span> Keypress event without return true;</span> | |
<input type="text" keypress.delegate="keypress($event)" /> | |
</div> | |
<div> | |
<span> Keypress event with return true; </span> |
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> | |
Detail | |
</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
body { | |
font-family: "Open Sans", Helvetica, Arial, sans-serif; | |
margin-bottom: 30px; | |
} | |
.list { | |
display: block; | |
margin: 20px 0px; | |
overflow: hidden; | |
} |
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
ul { | |
height: 100px; | |
background-color: aliceblue; | |
overflow-y: scroll; | |
} |
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
body { | |
font-family: "Open Sans", Helvetica, Arial, sans-serif; | |
margin-bottom: 30px; | |
} | |
list-item { | |
float: left; | |
} | |
.list, .scroll-list { |