summary refs log tree commit diff stats
path: root/lib/js/dom.nim
Commit message (Collapse)AuthorAgeFilesLines
* some dom proc correction and complement (#10684)liuxiaodong2019-02-151-4/+9
|
* DOM module: re-add more missing stuffAraq2019-02-081-1/+36
|
* DOM module: add more missing stuffAraq2019-02-071-0/+3
|
* DOM.nim: fix regression, missing procsAraq2019-02-061-0/+2
|
* DOM API: make compatible with Karax's requirements (#10517)Andreas Rumpf2019-02-021-130/+759
| | | | | * DOM API: make compatible with Karax's requirements * make tools\dochack.nim compile again
* Remove long deprecated stuff (#10332)Miran2019-01-181-28/+2
|
* Exports dom.Style (#8444)Dominik Picheta2018-09-011-1/+1
|
* Adds TextAreaElement type.Dominik Picheta2018-05-141-1/+7
|
* Adds onpopstate and proc related to Events to dom module.Dominik Picheta2018-05-141-0/+3
|
* Add some missing things to dom.nimtreeform2018-03-291-0/+44
| | | Add window.performance, window.performance.now(), window.devicePixelRatio, window.scrollX and Y, style.overflowX and Y, node.getBoundingRect.
* Use generic for 'stateObject' in func 'pushState'Renaud Chénard2018-01-141-1/+1
|
* add missing methods in js backendgrazil2018-01-111-1/+2
|
* Small fix for js domkonqoro2017-12-131-2/+2
|
* Add some extra methods and fields to DOM module.Dominik Picheta2017-04-061-0/+11
|
* Implement touch event types/procs in DOM module.Dominik Picheta2017-03-271-0/+30
|
* Implement requestAnimationFrame and cancelAnimationFrame in dom module.Dominik Picheta2017-03-231-0/+2
|
* Added some useful JS procs to DOM module.Dominik Picheta2016-05-101-0/+5
|
* Dom refactoringYuriy Glukhov2015-11-251-133/+173
|
* Reverted all changesPerelandric2015-06-041-75/+69
|
* lib/js - Dropped 'T' from typespdw2015-06-041-69/+75
|
* Added body and head properties to document.yglukhov2015-04-291-0/+2
|
* DOM types renamed.yglukhov2015-04-061-51/+76
|
* Correct dom objects inheritance.yglukhov2015-04-011-89/+81
|
* Some additions to dom.nimd3m1gd2015-02-201-2/+18
| | | | Missing functions and fields for various dom elements/events.
* docgen should work againAraq2014-10-051-18/+18
|
* Some docgen fixes.Dominik Picheta2014-09-131-3/+3
|
* Nimrod renamed to NimAraq2014-08-281-1/+1
|
* Hyperlinks back JavaScript target.Grzegorz Adam Hankiewicz2014-06-211-1/+2
|
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
|
* EcmaScript => JS. Fixes #330Simon Hafner2013-02-151-0/+451
No one calls it EcmaScript anymore.
the previous revision' href='/akkartik/mu/blame/cpp/015jump?h=hlt&id=5df82e48a2548e7d30b3e86dab0d866851a1c47d'>^
acc4792d ^


201b2e6c ^
1848b18f ^

201b2e6c ^
795f5244 ^
d855b0a0 ^
201b2e6c ^
d855b0a0 ^
8d72e565 ^
e4630643 ^

d855b0a0 ^
9dcbec39 ^
e4630643 ^

4f5bb5b6 ^
9dcbec39 ^
e4630643 ^

4f5bb5b6 ^
d855b0a0 ^



dc1323e9 ^
0487a30e ^
cdd6fd09 ^
201b2e6c ^

1066660e ^
cdd6fd09 ^
1066660e ^
201b2e6c ^

88be3dbc ^
1ead3562 ^
bc643692 ^
192d59d3 ^
201b2e6c ^
acc4792d ^
201b2e6c ^
acc4792d ^
d7494165 ^
201b2e6c ^
88be3dbc ^
1ead3562 ^
bc643692 ^
192d59d3 ^
201b2e6c ^
acc4792d ^
201b2e6c ^
acc4792d ^
57699011 ^
201b2e6c ^
1848b18f ^

201b2e6c ^
795f5244 ^
d855b0a0 ^
201b2e6c ^
d855b0a0 ^
8d72e565 ^
e4630643 ^

d855b0a0 ^
9dcbec39 ^
e4630643 ^

4f5bb5b6 ^
9dcbec39 ^
e4630643 ^

4f5bb5b6 ^
d855b0a0 ^



dc1323e9 ^
0487a30e ^
cdd6fd09 ^
201b2e6c ^

1066660e ^
cdd6fd09 ^
1066660e ^
201b2e6c ^

88be3dbc ^
1ead3562 ^
bc643692 ^
192d59d3 ^
201b2e6c ^
acc4792d ^
201b2e6c ^
acc4792d ^
d7494165 ^
201b2e6c ^
88be3dbc ^
1ead3562 ^
bc643692 ^
192d59d3 ^
201b2e6c ^
acc4792d ^
201b2e6c ^
acc4792d ^
57699011 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155