mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 10:38:59 +01:00
22 lines
273 B
HTML
22 lines
273 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<script>
|
|
Polymer({
|
|
is: "chat-messages",
|
|
properties: {
|
|
user: {},
|
|
friend: {
|
|
observer: "_friendChanged"
|
|
}
|
|
},
|
|
});
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body> </body>
|
|
|
|
</html> |