From 168bb0ae3caa9b94db3a2aa2819bc68c92d2d79a Mon Sep 17 00:00:00 2001 From: "Cheng.Lee" Date: Sat, 10 Dec 2016 22:21:52 +0800 Subject: [PATCH] the onmousewheel event target should be the target variable ,not document fix the content scroll event in IE --- jquery.slimscroll.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jquery.slimscroll.js b/jquery.slimscroll.js index 90caed3..2cac56c 100644 --- a/jquery.slimscroll.js +++ b/jquery.slimscroll.js @@ -395,7 +395,7 @@ } else { - document.attachEvent("onmousewheel", _onWheel) + target.attachEvent("onmousewheel", _onWheel) } }