9
9
* an element is clicked.
10
10
*
11
11
* @element ANY
12
+ * @priority 0
12
13
* @param {expression } ngClick {@link guide/expression Expression } to evaluate upon
13
14
* click. (Event object is available as `$event`)
14
15
*
@@ -65,6 +66,7 @@ forEach(
65
66
* The `ngDblclick` directive allows you to specify custom behavior on a dblclick event.
66
67
*
67
68
* @element ANY
69
+ * @priority 0
68
70
* @param {expression } ngDblclick {@link guide/expression Expression } to evaluate upon
69
71
* a dblclick. (The Event object is available as `$event`)
70
72
*
@@ -88,6 +90,7 @@ forEach(
88
90
* The ngMousedown directive allows you to specify custom behavior on mousedown event.
89
91
*
90
92
* @element ANY
93
+ * @priority 0
91
94
* @param {expression } ngMousedown {@link guide/expression Expression } to evaluate upon
92
95
* mousedown. (Event object is available as `$event`)
93
96
*
@@ -111,6 +114,7 @@ forEach(
111
114
* Specify custom behavior on mouseup event.
112
115
*
113
116
* @element ANY
117
+ * @priority 0
114
118
* @param {expression } ngMouseup {@link guide/expression Expression } to evaluate upon
115
119
* mouseup. (Event object is available as `$event`)
116
120
*
@@ -133,6 +137,7 @@ forEach(
133
137
* Specify custom behavior on mouseover event.
134
138
*
135
139
* @element ANY
140
+ * @priority 0
136
141
* @param {expression } ngMouseover {@link guide/expression Expression } to evaluate upon
137
142
* mouseover. (Event object is available as `$event`)
138
143
*
@@ -156,6 +161,7 @@ forEach(
156
161
* Specify custom behavior on mouseenter event.
157
162
*
158
163
* @element ANY
164
+ * @priority 0
159
165
* @param {expression } ngMouseenter {@link guide/expression Expression } to evaluate upon
160
166
* mouseenter. (Event object is available as `$event`)
161
167
*
@@ -179,6 +185,7 @@ forEach(
179
185
* Specify custom behavior on mouseleave event.
180
186
*
181
187
* @element ANY
188
+ * @priority 0
182
189
* @param {expression } ngMouseleave {@link guide/expression Expression } to evaluate upon
183
190
* mouseleave. (Event object is available as `$event`)
184
191
*
@@ -202,6 +209,7 @@ forEach(
202
209
* Specify custom behavior on mousemove event.
203
210
*
204
211
* @element ANY
212
+ * @priority 0
205
213
* @param {expression } ngMousemove {@link guide/expression Expression } to evaluate upon
206
214
* mousemove. (Event object is available as `$event`)
207
215
*
@@ -225,6 +233,7 @@ forEach(
225
233
* Specify custom behavior on keydown event.
226
234
*
227
235
* @element ANY
236
+ * @priority 0
228
237
* @param {expression } ngKeydown {@link guide/expression Expression } to evaluate upon
229
238
* keydown. (Event object is available as `$event` and can be interrogated for keyCode, altKey, etc.)
230
239
*
@@ -246,6 +255,7 @@ forEach(
246
255
* Specify custom behavior on keyup event.
247
256
*
248
257
* @element ANY
258
+ * @priority 0
249
259
* @param {expression } ngKeyup {@link guide/expression Expression } to evaluate upon
250
260
* keyup. (Event object is available as `$event` and can be interrogated for keyCode, altKey, etc.)
251
261
*
@@ -292,6 +302,7 @@ forEach(
292
302
* attribute**.
293
303
*
294
304
* @element form
305
+ * @priority 0
295
306
* @param {expression } ngSubmit {@link guide/expression Expression } to eval. (Event object is available as `$event`)
296
307
*
297
308
* @example
@@ -341,6 +352,7 @@ forEach(
341
352
* Specify custom behavior on focus event.
342
353
*
343
354
* @element window, input, select, textarea, a
355
+ * @priority 0
344
356
* @param {expression } ngFocus {@link guide/expression Expression } to evaluate upon
345
357
* focus. (Event object is available as `$event`)
346
358
*
@@ -356,6 +368,7 @@ forEach(
356
368
* Specify custom behavior on blur event.
357
369
*
358
370
* @element window, input, select, textarea, a
371
+ * @priority 0
359
372
* @param {expression } ngBlur {@link guide/expression Expression } to evaluate upon
360
373
* blur. (Event object is available as `$event`)
361
374
*
@@ -371,6 +384,7 @@ forEach(
371
384
* Specify custom behavior on copy event.
372
385
*
373
386
* @element window, input, select, textarea, a
387
+ * @priority 0
374
388
* @param {expression } ngCopy {@link guide/expression Expression } to evaluate upon
375
389
* copy. (Event object is available as `$event`)
376
390
*
@@ -391,6 +405,7 @@ forEach(
391
405
* Specify custom behavior on cut event.
392
406
*
393
407
* @element window, input, select, textarea, a
408
+ * @priority 0
394
409
* @param {expression } ngCut {@link guide/expression Expression } to evaluate upon
395
410
* cut. (Event object is available as `$event`)
396
411
*
@@ -411,6 +426,7 @@ forEach(
411
426
* Specify custom behavior on paste event.
412
427
*
413
428
* @element window, input, select, textarea, a
429
+ * @priority 0
414
430
* @param {expression } ngPaste {@link guide/expression Expression } to evaluate upon
415
431
* paste. (Event object is available as `$event`)
416
432
*
0 commit comments