From 4ddf430fea8bc459988fe04a4615b698393b69bb Mon Sep 17 00:00:00 2001 From: = <=> Date: Sat, 12 Sep 2015 12:40:23 +0200 Subject: [PATCH] Fix properties with default value = true Polymer properties with default value = true have to use Type: Object, otherwise it will not work. See also: https://github.com/Polymer/polymer/issues/1812#issuecomment-112226630 --- sortable-list.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sortable-list.html b/sortable-list.html index 7682223..0e401e0 100644 --- a/sortable-list.html +++ b/sortable-list.html @@ -42,7 +42,7 @@ value: null }, sort: { - type: Boolean, + type: Object, value: true }, /** @@ -116,7 +116,7 @@ * @type Boolean */ scroll: { - type: Boolean, + type: Object, value: true }, /**