diff options
author | Struan Donald <struan@exo.org.uk> | 2013-06-24 15:36:00 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2013-06-24 18:23:47 +0100 |
commit | ae2ba28d09269e45be75aba66e0b3a9d609b67c2 (patch) | |
tree | 95eb84b1dfc4239d2815e3a071deab2d95b658e8 /www/js | |
parent | ac0033b13614789789bbab129339adae4101e968 (diff) |
turn on transitions on Android 4+
Diffstat (limited to 'www/js')
-rw-r--r-- | www/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/js/app.js b/www/js/app.js index 5c3b655..57bc9b7 100644 --- a/www/js/app.js +++ b/www/js/app.js @@ -143,7 +143,7 @@ var tpl = { FMS.initialized = 1; tpl.loadTemplates( FMS.templates, function() { - if ( device.platform === 'Android' ) { + if ( device.platform === 'Android' && parseInt(device.version, 10) < 4 ) { $.mobile.defaultPageTransition = 'none'; } |