remove print statement; add fixme
This commit is contained in:
parent
31382f2513
commit
6343c894e2
1 changed files with 1 additions and 1 deletions
|
@ -394,6 +394,7 @@ Ox.ImageViewer = function(options, self) {
|
|||
}
|
||||
|
||||
function limitZoom(elastic) {
|
||||
// FIXME: elastic maxZoom is still wrong
|
||||
var imageSize = self.imageIsWider ? self.options.imageWidth : self.options.imageHeight,
|
||||
minZoom = elastic
|
||||
? (self.fitZoom * imageSize - 2 * self.options.elasticity) / imageSize
|
||||
|
@ -455,7 +456,6 @@ Ox.ImageViewer = function(options, self) {
|
|||
function onMousewheel(e) {
|
||||
var $target = $(e.target),
|
||||
factor = e.deltaY < 0 ? 2 : 0.5;
|
||||
Ox.print('MW', e.deltaY);
|
||||
if (e.deltaX == 0 && Math.abs(e.deltaY) > 10 && !self.mousewheelTimeout) {
|
||||
if ($target.is('.OxImage') || $target.is('.OxImageOverlayArea')) {
|
||||
self.options.center = getZoomCenter(e, factor);
|
||||
|
|
Loading…
Reference in a new issue