The directory contains code authored in a style that makes it transpilable to dart. As such, these are not idiomatic examples of Angular 2 usage. The main purpose of this directory is to enable experimentation with Angular within the angular/angular repository. Closes #4342 Closes #4639
27 lines
441 B
HTML
27 lines
441 B
HTML
<!doctype html>
|
|
<html>
|
|
<title>Key events</title>
|
|
<style>
|
|
.sample-area {
|
|
text-align: center;
|
|
margin: 5px;
|
|
height: 50px;
|
|
line-height: 50px;
|
|
border-radius: 5px;
|
|
border: 1px solid #d0d0d0;
|
|
}
|
|
.sample-area:focus {
|
|
border: 1px solid blue;
|
|
color: blue;
|
|
font-weight: bold;
|
|
}
|
|
</style>
|
|
<body>
|
|
<key-events-app>
|
|
Loading...
|
|
</key-events-app>
|
|
|
|
$SCRIPTS$
|
|
</body>
|
|
</html>
|