aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStruan Donald <struan@exo.org.uk>2013-06-04 10:43:55 +0100
committerStruan Donald <struan@exo.org.uk>2013-06-04 10:43:55 +0100
commit1c72696950a2100817fe8bb392bd9ccab06fc7c0 (patch)
tree4c1a17d44c76720c5fc3758733a3373b22d25d18
parentdbc9edbfb12768d6c368e99f4580022b4a5ce2ee (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.
-rw-r--r--www/js/app.js5
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()