diff options
author | Struan Donald <struan@exo.org.uk> | 2013-06-04 10:43:55 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2013-06-04 10:43:55 +0100 |
commit | 1c72696950a2100817fe8bb392bd9ccab06fc7c0 (patch) | |
tree | 4c1a17d44c76720c5fc3758733a3373b22d25d18 /www/js/app.js | |
parent | dbc9edbfb12768d6c368e99f4580022b4a5ce2ee (diff) |
There seem to be all sorts of issues with transitions doing odd
flickering on android, at least in the emulator, so disable them
totally for now.
Diffstat (limited to 'www/js/app.js')
-rw-r--r-- | www/js/app.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/www/js/app.js b/www/js/app.js index 3caba69..bfeef55 100644 --- a/www/js/app.js +++ b/www/js/app.js @@ -142,6 +142,11 @@ var tpl = { } FMS.initialized = 1; tpl.loadTemplates( FMS.templates, function() { + + if ( device.platform === 'Android' ) { + $.mobile.defaultPageTransition = 'none'; + } + _.extend(FMS, { router: new FMS.appRouter(), locator: new FMS.Locate() |