Jelajahi Sumber

Update jquery.nicescroll.js

Fixed issue of shifting cursor in textarea
Franco Arza 10 tahun lalu
induk
melakukan
e4ed2a6597
1 mengubah file dengan 5 tambahan dan 2 penghapusan
  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.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.lazyResize(30);
@@ -3631,4 +3634,4 @@
     $.nicescroll.options = _globaloptions;
   }
 
-}));
+}));