javascript - How to Bind Attribute from Custom Polymer Element to angularjs -
i created custom element called my-slider-input computes values user input. need take use these values in angular controller. i'm wondering what's best practice this? given polymer element: <dom-module id="my-slider-input"> <style> :host { display: block; } </style> <template> <button id="input1">input 1</button> <button id="input2">input 1</button> <button id="input3">input 1</button> </template> </dom-module> <script> (function() { polymer({ is: 'my-slider-input', properties: { value: { type: object, computed: 'computeoutputs()', reflecttoattribute: true, notify: true }, output1: { type: number, reflecttoattribute: true, notify: true }, output3: { type:...