Eli Black

Results 12 comments of Eli Black

This just happened to me. In my case, I did this: 1. Had Tesseract start processing an image 2. Made a change in my .js file that's calling Tesseract. 3....

Note that you need to check the `Current` checkbox on the camera in order for the camera to be active :)

IMHO, it should also be possible to specify multiple inputs that should be kept out of the input array 🙂 Not sure what the syntax for that would be like....

Is it possible to have `useAutoMemo()` generate a variable with a munged name and then use that variable when memoizing? e.g. ```javascript function MyComponent({ config }) { const __asdfanasdfjl__ =...

Thanks, @yuchi. I wonder if the ordering really needs to be respected, though? My understanding is that `render()` is already supposed to be pure, so it seems like we should...

I think I ran into this issue when using a version of TypeScript that was unsupported under the Angular version that I was using. In my case, the version of...

Never mind -- for Windows 10, it appears that you can use {x:Bind} to accomplish similar things. Would you be okay with adding a note to this project's page about...

Do you think something like this would work? ``` if ( document.readyState === "complete") { window.setTimeout( jQuery.ready ); } else if( document.readyState === "interactive" ) { document.onreadystatechange = function ()...

@gkatsanos Yes, I believe that's the current state of things.

I've done some testing, and it appears that replacing the code that tests for ready state with the following code fixes the issue for me, at least on a Chromium...