mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
build
This commit is contained in:
parent
5c6038e5f7
commit
d082bcfd7f
9
konva.js
9
konva.js
@ -1161,12 +1161,7 @@ var Konva = {};
|
||||
// calculate pixel ratio
|
||||
var canvas = Konva.Util.createCanvasElement(),
|
||||
context = canvas.getContext('2d'),
|
||||
// if using a mobile device, calculate the pixel ratio. Otherwise, just use
|
||||
// 1. For desktop browsers, if the user has zoom enabled, it affects the pixel ratio
|
||||
// and causes artifacts on the canvas. As of 02/26/2014, there doesn't seem to be a way
|
||||
// to reliably calculate the browser zoom for modern browsers, which is why we just set
|
||||
// the pixel ratio to 1 for desktops
|
||||
_pixelRatio = Konva.UA.mobile ? (function() {
|
||||
_pixelRatio = (function() {
|
||||
var devicePixelRatio = window.devicePixelRatio || 1,
|
||||
backingStoreRatio = context.webkitBackingStorePixelRatio
|
||||
|| context.mozBackingStorePixelRatio
|
||||
@ -1175,7 +1170,7 @@ var Konva = {};
|
||||
|| context.backingStorePixelRatio
|
||||
|| 1;
|
||||
return devicePixelRatio / backingStoreRatio;
|
||||
})() : 1;
|
||||
})();
|
||||
|
||||
/**
|
||||
* Canvas Renderer constructor
|
||||
|
2
konva.min.js
vendored
2
konva.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user