}
if (performanceMode === undefined || performanceMode === 'auto' || performanceMode === 'performancesTest') {
- this.veryLowPerf = this.fluidbook.support.IE > 0;
- this.lowPerf = !Modernizr.webgl || this.veryLowPerf || this.fluidbook.support.edge || this.fluidbook.support.android || this.fluidbook.support.iOS;
+ this.veryLowPerf = this.fluidbook.support.IE > 0 || this.fluidbook.support.iOS;
+ this.lowPerf = !Modernizr.webgl || this.veryLowPerf || this.fluidbook.support.edge || this.fluidbook.support.android;
} else if (performanceMode === 'lowPerf') {
this.lowPerf = true;
this.veryLowPerf = false;
this.transitions2d = Modernizr.csstransforms && Modernizr.csstransitions;
this.transitions3d = this.transitions2d && Modernizr.csstransforms3d && Modernizr.preserve3d;
- this.transitions3dacc = this.transitions2d;
+ this.transitions3dacc = this.transitions2d && !this.iOS;
this.ie9 = $("html").hasClass('ie9');