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

Commit

Permalink
v0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
tomalec committed Nov 27, 2014
1 parent f15dadd commit d04902b
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 8 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,10 @@ Name | Data | Description

## History

#### v0.0.?
#### v0.0.7
- gap renamed to gutter
- removed localStorage features (use [`<juicy-tiles-setup-sync>`](https://github.com/Juicy/juicy-tiles-setup-sync) if needed)
- auto height fixes

#### v0.0.6
- minifying task - dist folder for production use.
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "juicy-tile-list",
"version": "0.0.6",
"version": "0.0.7",
"homepage": "https://github.com/Juicy/juicy-tile-list",
"description": "<juicy-tile-list> is a Polymer Element with sortable tiles that packs efficiently without changing HTML structure (changes CSS only).",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion dist/package.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/package.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/packer.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/packer.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "juicy-tile-list",
"version": "0.0.6",
"version": "0.0.7",
"description": "<juicy-tile-list> is a Polymer Element with sortable tiles that packs efficiently without changing HTML structure (changes CSS only).",
"main": "src/juicy-tile-list.html",
"directories": {
Expand Down
5 changes: 4 additions & 1 deletion src/juicy-tile-list.html
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@


Polymer('juicy-tile-list', Platform.mixin( {}, Package.prototype, {
setup: null,
// setup: {}, // set in `created` 'constructor'
// {
// direction: "rightDown",
// gutter: 8,
Expand All @@ -163,6 +163,9 @@
items: null,// {},

defaultTileSetup: defaultTileSetup,
created: function(){
this.setup = {};
},
sorter: function byPriority(itemA, itemB){
return itemB.priority - itemA.priority;
},
Expand Down

0 comments on commit d04902b

Please sign in to comment.