File tree Expand file tree Collapse file tree 8 files changed +16
-16
lines changed Expand file tree Collapse file tree 8 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -194,15 +194,15 @@ exports.validationMessage = function (button) {
194
194
195
195
exports . checkValidity = function ( button ) {
196
196
return function ( ) {
197
- return button . checkValidity ;
197
+ return button . checkValidity ( ) ;
198
198
} ;
199
199
} ;
200
200
201
201
// ----------------------------------------------------------------------------
202
202
203
203
exports . reportValidity = function ( button ) {
204
204
return function ( ) {
205
- return button . reportValidity ;
205
+ return button . reportValidity ( ) ;
206
206
} ;
207
207
} ;
208
208
Original file line number Diff line number Diff line change @@ -82,15 +82,15 @@ exports.validationMessage = function (fieldset) {
82
82
83
83
exports . checkValidity = function ( fieldset ) {
84
84
return function ( ) {
85
- return fieldset . checkValidity ;
85
+ return fieldset . checkValidity ( ) ;
86
86
} ;
87
87
} ;
88
88
89
89
// ----------------------------------------------------------------------------
90
90
91
91
exports . reportValidity = function ( fieldset ) {
92
92
return function ( ) {
93
- return fieldset . reportValidity ;
93
+ return fieldset . reportValidity ( ) ;
94
94
} ;
95
95
} ;
96
96
Original file line number Diff line number Diff line change @@ -614,15 +614,15 @@ exports.validationMessage = function (input) {
614
614
615
615
exports . checkValidity = function ( input ) {
616
616
return function ( ) {
617
- return input . checkValidity ;
617
+ return input . checkValidity ( ) ;
618
618
} ;
619
619
} ;
620
620
621
621
// ----------------------------------------------------------------------------
622
622
623
623
exports . reportValidity = function ( input ) {
624
624
return function ( ) {
625
- return input . reportValidity ;
625
+ return input . reportValidity ( ) ;
626
626
} ;
627
627
} ;
628
628
Original file line number Diff line number Diff line change @@ -122,15 +122,15 @@ exports.validationMessage = function (keygen) {
122
122
123
123
exports . checkValidity = function ( keygen ) {
124
124
return function ( ) {
125
- return keygen . checkValidity ;
125
+ return keygen . checkValidity ( ) ;
126
126
} ;
127
127
} ;
128
128
129
129
// ----------------------------------------------------------------------------
130
130
131
131
exports . reportValidity = function ( keygen ) {
132
132
return function ( ) {
133
- return keygen . reportValidity ;
133
+ return keygen . reportValidity ( ) ;
134
134
} ;
135
135
} ;
136
136
Original file line number Diff line number Diff line change @@ -146,15 +146,15 @@ exports.validationMessage = function (object) {
146
146
147
147
exports . checkValidity = function ( object ) {
148
148
return function ( ) {
149
- return object . checkValidity ;
149
+ return object . checkValidity ( ) ;
150
150
} ;
151
151
} ;
152
152
153
153
// ----------------------------------------------------------------------------
154
154
155
155
exports . reportValidity = function ( object ) {
156
156
return function ( ) {
157
- return object . reportValidity ;
157
+ return object . reportValidity ( ) ;
158
158
} ;
159
159
} ;
160
160
Original file line number Diff line number Diff line change @@ -90,15 +90,15 @@ exports.validationMessage = function (output) {
90
90
91
91
exports . checkValidity = function ( output ) {
92
92
return function ( ) {
93
- return output . checkValidity ;
93
+ return output . checkValidity ( ) ;
94
94
} ;
95
95
} ;
96
96
97
97
// ----------------------------------------------------------------------------
98
98
99
99
exports . reportValidity = function ( output ) {
100
100
return function ( ) {
101
- return output . reportValidity ;
101
+ return output . reportValidity ( ) ;
102
102
} ;
103
103
} ;
104
104
Original file line number Diff line number Diff line change @@ -194,15 +194,15 @@ exports.validationMessage = function (select) {
194
194
195
195
exports . checkValidity = function ( select ) {
196
196
return function ( ) {
197
- return select . checkValidity ;
197
+ return select . checkValidity ( ) ;
198
198
} ;
199
199
} ;
200
200
201
201
// ----------------------------------------------------------------------------
202
202
203
203
exports . reportValidity = function ( select ) {
204
204
return function ( ) {
205
- return select . reportValidity ;
205
+ return select . reportValidity ( ) ;
206
206
} ;
207
207
} ;
208
208
Original file line number Diff line number Diff line change @@ -290,15 +290,15 @@ exports.validationMessage = function (textarea) {
290
290
291
291
exports . checkValidity = function ( textarea ) {
292
292
return function ( ) {
293
- return textarea . checkValidity ;
293
+ return textarea . checkValidity ( ) ;
294
294
} ;
295
295
} ;
296
296
297
297
// ----------------------------------------------------------------------------
298
298
299
299
exports . reportValidity = function ( textarea ) {
300
300
return function ( ) {
301
- return textarea . reportValidity ;
301
+ return textarea . reportValidity ( ) ;
302
302
} ;
303
303
} ;
304
304
You can’t perform that action at this time.
0 commit comments