Skip to content
This repository has been archived by the owner on Dec 29, 2022. It is now read-only.

Commit

Permalink
fix typo, remove some cruft
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott J. Miles committed Apr 4, 2014
1 parent d03a88a commit 67e4140
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 27 deletions.
5 changes: 0 additions & 5 deletions elements/x-meta/x-meta.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,6 @@
var an = a.name.toLowerCase(), bn = b.name.toLowerCase();
return an == bn ? 0 : an < bn ? -1 : 1;
});
/*
console.group('categories');
this.categories.forEach(function(c) {console.log(c.name);});
console.groupEnd('categories');
*/
},
idChanged: function(inOld) {
this.unregister(this, inOld);
Expand Down
25 changes: 3 additions & 22 deletions elements/x-palette/x-palette.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
<link rel="import" href="../x-meta/x-meta.html">

<polymer-element name="x-palette" attributes="canvas drag">

<template>

<style>
:host {
position: relative;
Expand All @@ -32,8 +34,6 @@
-ms-user-select: none;
}
.item {
Xfont-size: 15px;
Xmargin: 10px 6px 10px 10px;
font-weight: bold;
cursor: pointer;
padding: 12px;
Expand All @@ -59,28 +59,9 @@
color: #000;
white-space: nowrap;
}
.stage{
background: url('stage.png');
color: white;
}
.grill {
background: url('grill.png');
color: white;
}
.satin {
background: url('satin.png');
color: white;
}
.bluefog {
background: url('bluefog.png');
color: white;
}
[ishidden] {
display: none;
}
[loaded] {
Xborder: 1px solid green;
}
</style>

<x-meta id="meta" categories="{{categories}}"></x-meta>
Expand All @@ -89,7 +70,7 @@

<polymer-ui-menu selectedClass="palette-selected">

<template repeat="{{categories}}"
<template repeat="{{categories}}">

<polymer-ui-submenu-item class="group-item" label="{{name}}">

Expand Down

0 comments on commit 67e4140

Please sign in to comment.