Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
casperjs
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
edf53581
...
edf53581a7bd35394ba0e46cf32adfc74ed8df56
authored
2013-04-14 13:39:04 -0400
by
Matt Bowman
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fix spacing issue in clientutils
1 parent
689e565d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
modules/clientutils.js
modules/clientutils.js
View file @
edf5358
...
...
@@ -210,11 +210,11 @@
};
findFunction
=
findFunction
||
function
(
self
,
name
,
form
)
{
return
{
fullSelector
:
[
form
,
'[name="'
+
name
+
'"]'
].
join
(
' '
),
elts
:
self
.
findAll
(
'[name="'
+
name
+
'"]'
,
form
)
};
return
{
fullSelector
:
[
form
,
'[name="'
+
name
+
'"]'
].
join
(
' '
),
elts
:
self
.
findAll
(
'[name="'
+
name
+
'"]'
,
form
)
};
};
if
(
!
(
form
instanceof
HTMLElement
)
||
typeof
form
===
"string"
)
{
this
.
log
(
"attempting to fetch form element from selector: '"
+
form
+
"'"
,
"info"
);
...
...
Please
register
or
sign in
to post a comment