xLarry

Results 9 comments of xLarry

I just came accross this issue after experiencing the same issue on an Android 9 device and pulled the plugin from `dev` branch in order to see if that resolves...

I just googled your assumption regarding throttling and found the following: > **Android 9:** > Each foreground app can scan **four times in a 2-minute period.** This allows for a...

I think the error message @dmastag mentioned above (`ITMS-90000: This bundle is invalid - $message`) has been caused by an outage in Apple's App Processing System last night: ![image](https://user-images.githubusercontent.com/16979039/104714194-346e9180-5725-11eb-9926-5597c9271a9d.png) https://developer.apple.com/system-status/...

Adding `document.getElementsByTagName('body')[0].classList.add('modal-open');` did the trick for me.

The css somehow wasn't applied to my code. But got it running by passing some DialogOptions to the addDialog() method: ```javascript let disposable = this .dialogService .addDialog(PromptDialog, { data: yourData...

My workaround might be a little hacky, but here is how I did it: **[prompt.component.ts](https://github.com/ankosoftware/ng2-bootstrap-modal/blob/master/demo/src/app/prompt/prompt.component.ts)** 1. [Line 27](https://github.com/ankosoftware/ng2-bootstrap-modal/blob/master/demo/src/app/prompt/prompt.component.ts#L27): Change the return type of the DialogComponent to `` 2. [Line 35](https://github.com/ankosoftware/ng2-bootstrap-modal/blob/master/demo/src/app/prompt/prompt.component.ts#L35):...

I wasn't able to get this running in React as well. So I pulled the repo of @macmorning and run it as is, but still no luck 😕 ![image](https://user-images.githubusercontent.com/16979039/57729062-9136c080-7695-11e9-882c-a7a104e64d8a.png) Console...

Hi @macmorning, I performed `npm install` after cloning the repo. Executing `npm-check-updates` returns the following: ```shell gitpod /workspace/quagga-react-example $ ncu Checking /workspace/quagga-react-example/package.json [====================] 11/11 100% react ^16.6.3 → ^16.8.6 react-dom...

> There should definitely be a section about (all) those limitations in the docs. I couldn't find any information regarding this. Just stumbled accross a [section in the docs](https://docs.timescale.com/api/latest/continuous-aggregates/create_materialized_view/#create-materialized-view-continuous-aggregate) that...