Marian

Results 17 comments of Marian

Is it because it is only built for the back end?

I think it’s because the code is only for the backend

I think it’s because that code is for the backend only. On Mon, 30 May 2022 at 12:34 PM, Ingo König ***@***.***> wrote: > I have the same error. >...

Where is the latest documentation about AngularFire with Cloud Functions? In Node.js `functions.https.onCall` and Angular `httpsCallable`

I had to import the other file ``` import rangy from 'rangy'; import 'rangy/lib/rangy-selectionsaverestore.js'; ```

I updated **firebase** to v10 from v9 and now I don't see errors. I see that AngularFire requires v12 of **firebase-tools** and not the latest v13

Thank you for your quick response. I downloaded Firefox for Mac and I get this error: `Uncaught TypeError: Invalid time range or unsupported time range format.` I am working on...

Now it works in firefox. The error was from my configuration for the animation. I came to this stage ``` var videoElement = document.querySelector('[data-section-id="66d339fcaa91932c1202ad7e"] video'); var scrollTimeline2 = new ScrollTimeline({...

This works in Chrome but not on Firefox when the polyfill is used var videoElement = document.querySelector('[data-section-id="66d339fcaa91932c1202ad7e"] video'); ``` var scrollTimeline2 = new ScrollTimeline({ source: document.documentElement, axis: "block", orientation: 'block'...

This one did the job ``` var videoElement = document.querySelector('[data-section-id="66d339fcaa91932c1202ad7e"] video'); var scrollTimeline2 = new ScrollTimeline({ source: document.documentElement, axis: "block", orientation: 'block' }); videoElement.animate( { transform: ["translateY(0)", "translateY(-33vh)"]}, { duration:...