Best way to communicate between instances of the same web component with Polymer?
I'm trying to sync some of my web component properties between instances of the same element so if one of this properties changes then the same property gets updated in all the instances with the corresponding binding and events. Note: I want to use the Polymer Data System Concepts for the communications between instances. Example my-element.html <dom-module id="my-element"> <script> Polymer({ is: 'my-element', properties: { myProp: { type: String, notify: true } }); </script> </dom-module> my-other-element.html <dom-module id="my-other-element"> <template> <my-element my-prop="{{otherProp}}">