Skip to content

Commit

Permalink
Fix properties with default value = true
Browse files Browse the repository at this point in the history
Polymer properties with default value = true have to use Type: Object, otherwise it will not work.
See also: Polymer/polymer#1812 (comment)
  • Loading branch information
= committed Sep 12, 2015
1 parent 1df910c commit 4ddf430
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sortable-list.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
value: null
},
sort: {
type: Boolean,
type: Object,
value: true
},
/**
Expand Down Expand Up @@ -116,7 +116,7 @@
* @type Boolean
*/
scroll: {
type: Boolean,
type: Object,
value: true
},
/**
Expand Down

0 comments on commit 4ddf430

Please sign in to comment.