diff options
Diffstat (limited to 'client/src/lib/views/home.js')
| -rw-r--r-- | client/src/lib/views/home.js | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/client/src/lib/views/home.js b/client/src/lib/views/home.js index 618ce64..6f117e5 100644 --- a/client/src/lib/views/home.js +++ b/client/src/lib/views/home.js @@ -42,11 +42,20 @@ export default class Home extends Component { const label = labels[i] return view(path, image, label) }) - return ( - <FadeInView duration={500} style={styles.container}> - {links} - </FadeInView> - ) + if (navigator.userAgent.match('Firefox')) { + return ( + <View style={styles.container}> + {links} + </View> + ) + } + else { + return ( + <FadeInView duration={500} style={styles.container}> + {links} + </FadeInView> + ) + } } } |
