I'm not sure if this is actually an issue, or just me misusing the element, but when placed inside another polymer element, as so:
<polymer-element name="test">
<template>
<div>
<firebase-element id="base" data="{{data}}" location="..."></firebase-element>
</div>
</template>
<script>
Polymer({
})
</script>
</polymer-element>
the initial data binding commits a value of null to firebase. I've tried it both with and without specifying a data element in the Polymer function.
I'm not sure if this is actually an issue, or just me misusing the element, but when placed inside another polymer element, as so:
the initial data binding commits a value of null to firebase. I've tried it both with and without specifying a data element in the Polymer function.