Skip to content
This repository was archived by the owner on May 29, 2019. It is now read-only.

Commit 2285101

Browse files
committed
update friends-list example
1 parent 95ac8f2 commit 2285101

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

1.0/elements/docs-menu.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
</core-item>
5757

5858
<core-item label="Articles" icon="book">
59-
<a href="/{{versionPrefix}}/articles"></a>
59+
<a href="/{{versionPrefix}}/articles/"></a>
6060
</core-item>
6161

6262
<core-item label="Catalog" icon="polymer">

1.0/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,9 @@ title: Welcome
186186
<dom-module id="friend-list">
187187
<link rel="import" type="css" href="friend-list.css">
188188
<template>
189-
<firebase-element data="{{data}}"
189+
<firebase-collection data="{{data}}"
190190
location="https://users1.firebaseio.com/users">
191-
</firebase-element>
191+
</firebase-collection>
192192
<template is="dom-repeat" items="{{data}}">
193193
<contact-card starred="{{item.starred}}">
194194
<img src="{{item.img}}" alt="{{item.name}}">

1.0/samples/homepage/friend-list/friend-list.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<link rel="import" href="../../components/firebase-element/firebase-element.html">
1+
<link rel="import" href="../../components/firebase-element/firebase-collection.html">
22
<link rel="import" href="../contact-card/contact-card.html">
33

44
<dom-module id="friend-list">
55
<link rel="import" type="css" href="friend-list.css">
66
<template>
7-
<firebase-element data="{{data}}"
7+
<firebase-collection data="{{data}}"
88
location="https://users1.firebaseio.com/users">
9-
</firebase-element>
9+
</firebase-collection>
1010
<template is="dom-repeat" items="{{data}}">
1111
<contact-card starred="{{item.starred}}">
1212
<img src="{{item.img}}" alt="{{item.name}}">

0 commit comments

Comments
 (0)