We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ondoubleclick
ondblclick
1 parent 0296cac commit fe272d5Copy full SHA for fe272d5
packages/svelte2tsx/src/knownevents.ts
@@ -95,8 +95,8 @@ export default [
95
'onclickcapture',
96
'oncontextmenu',
97
'oncontextmenucapture',
98
- 'ondoubleclick',
99
- 'ondoubleclickcapture',
+ 'ondblclick',
+ 'ondblclickcapture',
100
'ondrag',
101
'ondragcapture',
102
'ondragend',
packages/svelte2tsx/svelte-jsx.d.ts
@@ -1903,8 +1903,8 @@
1903
onclickcapture?: MouseEventHandler<T>;
1904
oncontextmenu?: MouseEventHandler<T>;
1905
oncontextmenucapture?: MouseEventHandler<T>;
1906
- ondoubleclick?: MouseEventHandler<T>;
1907
- ondoubleclickcapture?: MouseEventHandler<T>;
+ ondblclick?: MouseEventHandler<T>;
+ ondblclickcapture?: MouseEventHandler<T>;
1908
ondrag?: DragEventHandler<T>;
1909
ondragcapture?: DragEventHandler<T>;
1910
ondragend?: DragEventHandler<T>;
0 commit comments