sfeast

Results 3 comments of sfeast

As @merbin2012 mentions, existing sample code [here](https://admob-plus.github.io/docs/cordova/consent#usage) shows: ``` const consentStatus = await consent.getConsentStatus() if (consentStatus === consent.ConsentStatus.Required) { await consent.requestInfoUpdate() } await consent.loadAndShowIfRequired() ``` which only calls `await consent.requestInfoUpdate()`...

Thanks for taking a look. Looks like it's also tied to the data property. Here's an example (only works in chrome I think since I'm defining an element in the...

@jenyckee I believe it's as I answered here - http://stackoverflow.com/questions/31504447/firebase-polymer-two-way-binding-uncaught-typeerror-cannot-read-property-f/31545356#31545356 You are mixing up collections & documents/arrays of objects & single objects. In your first example above you are trying...