Chris Park

Results 10 comments of Chris Park

@rommguy Hi, if this issue is still open and relevant, I can create a PR

I just started working on the code, and would like to point out that "opacity: 1;" had to be set for both .rcs-custom-scroll and .rcs-custom-scrollbar to work, as below, at...

@rommguy Hey I made a PR #103

Okay! Enjoy your vacation, and let me know if there is any issue :)

Yes, @Josh-Cena . The code below from the article is a good evidence. ``` async function foo(name) { console.log(name, "start"); await console.log(name, "middle"); console.log(name, "end"); } foo("First"); foo("Second"); ``` ```...

Here is the ECMAScript Spec Doc regarding ```await``` keyword: https://tc39.es/ecma262/#await It basically means ```await value``` will make ```value``` into promise, the promise is executed, and all codes after ```value``` will...

> We are experiencing the same issues in 3.6.6: The Promise never returns and code after `await lazyQuery();` is never reached although the Network tab clearly shows that the backend...

> I can reproduce this issue because I am trying to pass an object as children to a React component (the parent component converts it to more React components). Works...

Dear future developers who are confused... 1. use `onStop` instead of `onEnd` 2. try `position: 'relative'` on `` if it still doesnt work