Matt Rabe

Results 18 comments of Matt Rabe

@arled I couldn't find documentation for it, but the object keys in the first param passed to `createMigrate` (your `migrations` const) apparently **need to match the target version**. Your target...

@aullman This works. This change makes the video element scroll along with the rest of the "page", as opposed to "floating" over it

It seems strange/unexpected to me to use order of object keys to dictate the order of operations. It also seems limiting - since object keys must be unique, you cannot...

Yes, I did enable the facades in bootstrap/app.php like this: > $app->withFacades(); class_alias(\Develpr\AlexaApp\Facades\AlexaRouter::class, 'AlexaRoute'); class_alias(\Develpr\AlexaApp\Facades\Alexa::class, 'Alexa');

For what it's worth I've forked this repo and made changes on a new branch `lumen-5.1.7` so that I am able to use static functions at least in some cases...

Hey there! Just wanted to thank you for providing this script... I discovered it some time ago (0.0.2) and have been using it regularly in my development cycles - very...

I also confirm this is happening in 4.0.0. Just started digging into it, see what I can find **UPDATE**: This is happening for me only on the initial mount. Subsequent...

After analyzing 3c21ffa45c I found that this was caused during the refactor from `componentWillMount()` to `init()`. Previously, `componentWillMount` set `_mounted` to `true` and then subsequently fired `update()`. After 3c21ffa45c, we...