Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
rename Bowager-style discovery experiment
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott J. Miles committed Oct 31, 2013
1 parent d468461 commit a1600d4
Showing 1 changed file with 5 additions and 26 deletions.
31 changes: 5 additions & 26 deletions discover.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@
</style>
<!--<script src="../platform/platform.js"></script>-->
<script src="../polymer/polymer.js"></script>
<link rel="import" href="elements.html">
<link rel="import" href="../polymer-ui-elements/polymer-ui-icon/polymer-ui-icon.html">
<link rel="import" href="../designer-elements/x-meta/x-meta.html">
<link rel="import" href="elements.html">
<link rel="import" href="metadata.html">
</head>
<body>
Expand All @@ -20,30 +21,6 @@ <h3>Get 'Em All</h3>
<br><br>
<h3>Individually Wrapped</h3>

<!--
<div style="border: 1px dotted gray; padding: 8px;">
<h4 style="margin-top: 0;">Icon</h4>
<polymer-ui-icon icon="briefcase"></polymer-ui-icon>
<br><br>
<a href="polymer-ui-icon">Test Page</a>
<br>
<a href="http://localhost:3003/bower?polymer-ui-icon=https%3A//github.com/sjmiles/polymer-ui-icon.git">Bowager Install</a>
</div>
<br>
<div style="border: 1px dotted gray; padding: 8px;">
<h4 style="margin-top: 0;">Toolbar</h4>
<polymer-ui-toolbar theme="polymer-ui-dark-theme">
<polymer-ui-icon-button icon="menu"></polymer-ui-icon-button>
<div flex>Toolbar</div>
<polymer-ui-icon-button icon="add"></polymer-ui-icon-button>
</polymer-ui-toolbar>
<br>
<a href="polymer-ui-toolbar">Test Page</a>
<br>
</div>
<br><br>
-->

<elt-list></elt-list>

<polymer-element name="meta-archetype" attributes="meta">
Expand All @@ -52,7 +29,9 @@ <h4 style="margin-top: 0;">Toolbar</h4>
Polymer('meta-archetype', {
meta: null,
metaChanged: function () {
this.shadowRoot.appendChild(this.meta.archetype.content.cloneNode(true));
if (this.meta && this.meta.archetype) {
this.shadowRoot.appendChild(this.meta.archetype.content.cloneNode(true));
}
}
});
</script>
Expand Down

0 comments on commit a1600d4

Please sign in to comment.