Is there a way to set up bindings imperatively. Usage example:
var el2 = new MyElement(); el2.myProp = this.$.anotherElement.anotherProp
This will not set the binding, just assign a value or object. I would like to find a way to do something like:
el2.myProp.bindTo(this.$.anotherElement.anotherProp)
Possible?
source share