Lorenzo Stanco

Results 59 comments of Lorenzo Stanco

@jkuchar Thank you very much. Version 1 looks like all I need, and the fact that is all in one file makes it a good candidate.

Sorry, I didn't have time to work on it. The idea was to use BFT version 1, so... PRs are welcome.

For me, the cause of this issue is that the CodeMirror component is mounted before the parent is added to the DOM, i.e. it is mounted on a **detached DOM...

I wonder why it isn't like this from the beginning... Geniuine question, not a rhetorical one. I'm curious.

The problem is not in counting characters, Node is perfectly capable of correctly counting characters natively: ``` > 'abcdef'.length 6 > '要查看此应用'.length 6 ``` The problem is that fixed-width fonts...

Same. I temporary fixed importing `includes` from [core-js](https://github.com/zloirock/core-js) at top level: ```js import 'core-js/features/string/includes'; import 'core-js/features/array/includes'; ```

I don't think so. From my understanding the one that is discontinued is not the API used in this repo, but the **Google+** Hangouts API, which is currently used to...

@averissimo Branch `scope_workaround` does not work for me. I see the URL with "programmatic_auth" instead of "auth", but when opened it asks my password and then hangs indefinitely with "One...

I found a workaround for when file is not "local" (i.e. when `FileUtils.getFile` and `FileUtils.getPath` return null or `FileUtils.isLocal` is false), which is applicable for file selection from Drive #90,...

In my experience, you won't make async functions work with the `interop` library as it is right now. I've managed to make async calls from LUA only when using the...