File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -161,21 +161,18 @@ export default class PullDownRefresh extends SuperComponent {
161161 } ,
162162
163163 onDragStart ( e : WechatMiniprogram . ScrollViewDragStart ) {
164- if ( this . properties . disabled ) return ;
165164 const { scrollTop, scrollLeft } = e . detail ;
166165
167166 this . triggerEvent ( 'dragstart' , { scrollTop, scrollLeft } ) ;
168167 } ,
169168
170169 onDragging ( e : WechatMiniprogram . ScrollViewDragging ) {
171- if ( this . properties . disabled ) return ;
172170 const { scrollTop, scrollLeft } = e . detail ;
173171
174172 this . triggerEvent ( 'dragging' , { scrollTop, scrollLeft } ) ;
175173 } ,
176174
177175 onDragEnd ( e : WechatMiniprogram . ScrollViewDragEnd ) {
178- if ( this . properties . disabled ) return ;
179176 const { scrollTop, scrollLeft } = e . detail ;
180177
181178 this . triggerEvent ( 'dragend' , { scrollTop, scrollLeft } ) ;
You can’t perform that action at this time.
0 commit comments