瀏覽代碼

Update jquery.nicescroll.js

Fixed issue of shifting cursor in textarea
Franco Arza 10 年之前
父節點
當前提交
e4ed2a6597
共有 1 個文件被更改,包括 5 次插入2 次删除
  1. 5 2
      jquery.nicescroll.js

+ 5 - 2
jquery.nicescroll.js

@@ -1948,7 +1948,10 @@
         //
         //
 
 
         if (!self.ispage && self.opt.boxzoom) self.bind(window, "resize", self.resizeZoom);
         if (!self.ispage && self.opt.boxzoom) self.bind(window, "resize", self.resizeZoom);
-        if (self.istextarea) self.bind(self.win, "mouseup", self.lazyResize);
+				if (self.istextarea) {
+					self.bind(self.win, "keydown", self.lazyResize);
+					self.bind(self.win, "mouseup", self.lazyResize);
+				}
 
 
         //        self.checkrtlmode = true;
         //        self.checkrtlmode = true;
         self.lazyResize(30);
         self.lazyResize(30);
@@ -3631,4 +3634,4 @@
     $.nicescroll.options = _globaloptions;
     $.nicescroll.options = _globaloptions;
   }
   }
 
 
-}));
+}));