Skip to content

Instantly share code, notes, and snippets.

@nico159
Created January 25, 2014 15:15
Show Gist options
  • Save nico159/8617859 to your computer and use it in GitHub Desktop.
Save nico159/8617859 to your computer and use it in GitHub Desktop.
<link rel="import" href="../Polymer/polymer.html">
<link rel="import" href="contact.html">
<polymer-element name="ff-userlist" attributes="online contactsonline">
<template>
<template repeat="{{ contact in contactsonline }}">
<ff-contact servicenick="{{ contact.serviceNick }}"></ff-contact>
<br/>
</template>
</template>
<script>
Polymer('ff-userlist', {
ready: function () {
}
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment