Use shorter syntax for integer division by 2
This commit is contained in:
@@ -44,8 +44,8 @@ ol.source.Zoomify = function(opt_options) {
|
|||||||
Math.ceil(width / tileSize),
|
Math.ceil(width / tileSize),
|
||||||
Math.ceil(height / tileSize)
|
Math.ceil(height / tileSize)
|
||||||
]);
|
]);
|
||||||
width = parseInt(width / 2, 10);
|
width >>= 1;
|
||||||
height = parseInt(height / 2, 10);
|
height >>= 1;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
while (imageWidth > tileSize || imageHeight > tileSize) {
|
while (imageWidth > tileSize || imageHeight > tileSize) {
|
||||||
|
|||||||
Reference in New Issue
Block a user