File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -251,6 +251,13 @@ export function applyMixins(
251251 } ) ;
252252}
253253
254+ export const exclusiveTouchProperty = new CssProperty < Style , boolean > ( {
255+ name : 'exclusiveTouch' ,
256+ cssName : 'exclusive-touch' ,
257+ defaultValue : false ,
258+ valueConverter : booleanConverter ,
259+ } ) ;
260+
254261export const ViewInitEvent = 'ViewInitEvent' ;
255262export const ViewDisposeEvent = 'ViewDisposeEvent' ;
256263
@@ -287,12 +294,6 @@ class ViewGestureExtended extends View {
287294 }
288295}
289296
290- export const exclusiveTouchProperty = new CssProperty < Style , boolean > ( {
291- name : 'exclusiveTouch' ,
292- cssName : 'exclusive-touch' ,
293- defaultValue : false ,
294- valueConverter : booleanConverter ,
295- } ) ;
296297exclusiveTouchProperty . register ( Style ) ;
297298
298299let installed = false ;
You can’t perform that action at this time.
0 commit comments