File tree Expand file tree Collapse file tree 1 file changed +0
-20
lines changed
projects/igniteui-angular/src/lib/splitter/splitter-bar Expand file tree Collapse file tree 1 file changed +0
-20
lines changed Original file line number Diff line number Diff line change @@ -86,26 +86,6 @@ export class IgxSplitBarComponent {
86
86
*/
87
87
private startPoint ! : number ;
88
88
89
- /**
90
- * A method that handles the `PoinerDown` event firing.
91
- * @param {PointerEvent } event The `PoinerDown` event payload.
92
- * @return {void }@memberof SplitBarComponent
93
- */
94
- public onPointerDown ( event : PointerEvent ) {
95
- this . startPoint = this . type === SplitterType . Horizontal ? event . clientX : event . clientY ;
96
- this . moveStart . emit ( this . pane ) ;
97
- }
98
-
99
- /**
100
- * A method that handles the `PoinerMove` event firing.
101
- * @param {PointerEvent } event The `PoinerMove` event payload.
102
- * @return {void }@memberof SplitBarComponent
103
- */
104
- public onPointerMove ( event : PointerEvent ) {
105
- const delta = this . startPoint - ( this . type === SplitterType . Horizontal ? event . clientX : event . clientY ) ;
106
- this . moving . emit ( delta ) ;
107
- }
108
-
109
89
public onDragStart ( event : IDragStartEventArgs ) {
110
90
this . startPoint = this . type === SplitterType . Horizontal ? event . startX : event . startY ;
111
91
this . moveStart . emit ( this . pane ) ;
You can’t perform that action at this time.
0 commit comments