Skip to content

Commit

Permalink
Merge pull request #5 from PolymerElements/hamster
Browse files Browse the repository at this point in the history
polymer++
  • Loading branch information
notwaldorf committed May 6, 2015
2 parents 76e6bbe + 299c113 commit b6dde57
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 7 deletions.
25 changes: 21 additions & 4 deletions bower.json
@@ -1,13 +1,30 @@
{
"name": "iron-icons",
"version": "0.9.0",
"authors": [
"The Polymer Authors"
],
"keywords": [
"web-components",
"web-component",
"polymer"
],
"main": "iron-icons.html",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/PolymerElements/paper-icons"
},
"license": "MIT",
"homepage": "https://github.com/PolymerElements/paper-icons",
"dependencies": {
"polymer": "polymer/polymer#v0.8.0-rc.7",
"iron-icon": "polymerelements/iron-icon#^0.8.0",
"iron-iconset-svg": "polymerelements/iron-iconset-svg#^0.8.0"
"polymer": "polymer/polymer#v0.9.0-rc.1",
"iron-icon": "polymerelements/iron-icon#^0.9.0",
"iron-iconset-svg": "polymerelements/iron-iconset-svg#^0.9.0"
},
"devDependencies": {
"paper-styles": "polymerelements/paper-styles#^0.8.0",
"paper-styles": "polymerelements/paper-styles#^0.9.0",
"iron-meta": "polymerelements/iron-meta#^0.9.0",
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.6.0"
},
"ignore": [
Expand Down
6 changes: 3 additions & 3 deletions demo/index.html
Expand Up @@ -89,17 +89,17 @@
</head>
<body>

<template is="x-autobind">
<template is="dom-bind">

<iron-meta type="iconset" list="{{iconsets}}"></iron-meta>

<template is="x-repeat" items="{{iconsets}}">
<template is="dom-repeat" items="{{iconsets}}">

<h2>{{item.name}}</h2>

<div class="set horizontal wrap layout">

<template is="x-repeat" items="{{item.iconNames}}">
<template is="dom-repeat" items="{{item.iconNames}}">

<span class="container vertical center layout">
<iron-icon icon="{{item}}"></iron-icon>
Expand Down

0 comments on commit b6dde57

Please sign in to comment.