From 7836085885c081d40c78c22a03e4ee137c555fa1 Mon Sep 17 00:00:00 2001 From: Louis Liu Date: Sat, 16 May 2015 08:25:45 +0800 Subject: [PATCH 1/2] Add properties in my-element.html. --- my-element.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/my-element.html b/my-element.html index 1e14ff0e..39d7a78c 100644 --- a/my-element.html +++ b/my-element.html @@ -11,6 +11,9 @@ Polymer({ is: 'my-element', + // Any property that’s part of your element’s public API should be declared in the properties object. + properties: {}, + // Fires when an instance of the element is created created: function() {}, From a990ec5942851c0e5dbd1d3d871fc8a57fda8d87 Mon Sep 17 00:00:00 2001 From: Louis Liu Date: Sat, 16 May 2015 08:27:42 +0800 Subject: [PATCH 2/2] Remove duplicate space in comments for properties. --- my-element.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/my-element.html b/my-element.html index 39d7a78c..f65c3f09 100644 --- a/my-element.html +++ b/my-element.html @@ -11,7 +11,7 @@ Polymer({ is: 'my-element', - // Any property that’s part of your element’s public API should be declared in the properties object. + // Any property that’s part of your element’s public API should be declared in the properties object. properties: {}, // Fires when an instance of the element is created