Hi Team,

I am bit confused about polymer element attributes and property.
Can someone explain me why i am getting following output for the HTML 

*Output:-*
Test = null, test = t1
Test = null, test = t2

*HTML:-*
<!doctype>
<html>
<head>
<script src="/components/platform/platform.js"></script>
<link rel="import" href="/components/polymer/polymer.html">
<link rel="import" href="/components/paper-item/paper-item.html">

</head>
<body fullbleed unresolved>
<polymer-element name="test-element" attributes="Test test">
<template>
<paper-item label="Test = {{Test}}, test = {{test}}"></paper-item>
</template>
<script>
Polymer("test-element", {});
</script>
</polymer-element>
 <test-element Test="t1" test="t2"></test-element>
<test-element test="t2" Test="t1"></test-element>

</body>
</html>

Regards,
vishal

Follow Polymer on Google+: plus.google.com/107187849809354688692
--- 
You received this message because you are subscribed to the Google Groups 
"Polymer" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/polymer-dev/4c6baf65-7839-478b-b85a-d814017b4927%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to