Is it possible to access a dom-repeat that is present inside a dom-if from javascript.
<dom-if if={{someCondition}}>
<dom-repeat items={{data}}></dom-repeat>
</dom-if>
Now i can access the dom-if using this.$.id but how can i access the dom-repeat.
