} catch (e) {
}
this.macOs = navigator.platform.toUpperCase().indexOf('MAC') >= 0;
+ this.safari = navigator.vendor === "Apple Computer, Inc.";
this.android = this.fitScreenAtZero = this.userAgent.search(/android/i) > -1 || this.userAgent.search(/galaxy/i) > -1;
this.android3 = this.android && this.userAgent.search(/android 3/i) > -1;
this.iOS = Modernizr.ios;
this.imagesVersion = true;
break;
case 'html5-desktop':
- this.imagesVersion = this.iOS || this.android || this.IE > 0;
+ this.imagesVersion = this.iOS || this.android || (this.safari && this.fluidbook.settings.rasterizeOnSafari) || this.IE > 0;
break;
default:
this.imagesVersion = false;