Skip to content

Commit d807209

Browse files
committed
add scrollY to TargetTable
1 parent eaac094 commit d807209

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

source-view/generator/opening-element-visitor.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export class OpeningElementVisitor {}
2020
```
2121

2222
```typescript
23-
const TargetTable = { DoubleClick: "dblclick", InnerHTML: "innerHTML", contentEditable: "contenteditable", Ref: "this" };
23+
const TargetTable = { DoubleClick: "dblclick", InnerHTML: "innerHTML", contentEditable: "contenteditable", Ref: "this", ScrollY: "scrollY" };
2424
```
2525

2626
```typescript

src/generator/opening-element-visitor.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ const TargetTable = {
2929
"DoubleClick": "dblclick",
3030
"InnerHTML": "innerHTML",
3131
"contentEditable": "contenteditable",
32-
"Ref": "this"
32+
"Ref": "this",
33+
"ScrollY": "scrollY"
3334
}
3435

3536
const NamespaceList = [

0 commit comments

Comments
 (0)