seanadkinson

Results 35 comments of seanadkinson

Fixed this issue for IE7 by replacing [this line](https://github.com/louisremi/background-size-polyfill/blob/gh-pages/backgroundsize.htc#L259) with the following: ``` elementStyle.backgroundImage = "none"; ``` The comment above it says: ``` // set inline background image to the...

Didn't open the example app, but you can see in the source code that its not handled: https://github.com/maxs15/react-native-spinkit/blob/6a53f5be6e0ff630d194c7174a8fba680b058186/android/src/main/java/com/react/rnspinkit/RNSpinkitView.java#L57

To downgrade and workaround temporarily (for anyone else that finds this thread and has the same issue: ``` npm install --save [email protected] rm -Rf node_modules/webpack npm install ``` This will...

+1 for `extends`. Thanks for the lib! I'll add a PR if I can get around to it.

Same as @chriscoomber above, I found this post looking for hot-reload support for web. The `dangerouslyAddModulePathsToTranspile` solution works for me, but I wonder if this support can be added to...

Added this and some other things in my PR, #8. The API is basically what you said @insin, except you don't need to specify the `12-n` for the label, so...

@0x-2a That gist is gone now. Might you still have the script?

Looking at [this function](https://github.com/streem/react-native-select-contact/blob/master/index.js#L20), it doesn't seem like you would get into this situation, except if opening the contact selector were remaining open, without resolving the promise. When you get...

No info in the Android logs that would help narrow it down? Some have reported issues with permissions on Android, so you might need to request `READ_CONTACTS` before initiating the...