mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-18 23:59:43 +01:00
22 lines
239 B
HTML
22 lines
239 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> |