File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
app/code/Magento/Ui/view/base/web/js/grid Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -444,7 +444,7 @@ define([
444
444
cfg . curResizeElem . model . width = $ ( cfg . curResizeElem . elems [ 0 ] ) . outerWidth ( ) ;
445
445
cfg . depResizeElem . model . width = $ ( cfg . depResizeElem . elems [ 0 ] ) . outerWidth ( ) ;
446
446
body . addClass ( this . inResizeClass ) ;
447
- body . bind ( 'mousemove' , this . mousemoveHandler ) ;
447
+ body . on ( 'mousemove' , this . mousemoveHandler ) ;
448
448
$ ( window ) . on ( 'mouseup' , this . mouseupHandler ) ;
449
449
} ,
450
450
@@ -528,7 +528,7 @@ define([
528
528
this . store ( 'storageColumnsData' ) ;
529
529
530
530
body . removeClass ( this . inResizeClass ) ;
531
- body . unbind ( 'mousemove' , this . mousemoveHandler ) ;
531
+ body . off ( 'mousemove' , this . mousemoveHandler ) ;
532
532
$ ( window ) . off ( 'mouseup' , this . mouseupHandler ) ;
533
533
} ,
534
534
You can’t perform that action at this time.
0 commit comments