Fix spacing issue in clientutils
Showing
1 changed file
with
4 additions
and
4 deletions
... | @@ -210,11 +210,11 @@ | ... | @@ -210,11 +210,11 @@ |
210 | }; | 210 | }; |
211 | 211 | ||
212 | findFunction = findFunction || function(self, name, form) { | 212 | findFunction = findFunction || function(self, name, form) { |
213 | return { | 213 | return { |
214 | fullSelector: [form, '[name="' + name + '"]'].join(' '), | 214 | fullSelector: [form, '[name="' + name + '"]'].join(' '), |
215 | elts: self.findAll('[name="' + name + '"]', form) | 215 | elts: self.findAll('[name="' + name + '"]', form) |
216 | }; | ||
217 | }; | 216 | }; |
217 | }; | ||
218 | 218 | ||
219 | if (!(form instanceof HTMLElement) || typeof form === "string") { | 219 | if (!(form instanceof HTMLElement) || typeof form === "string") { |
220 | this.log("attempting to fetch form element from selector: '" + form + "'", "info"); | 220 | this.log("attempting to fetch form element from selector: '" + form + "'", "info"); | ... | ... |
-
Please register or sign in to post a comment