Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
5dd9b7a5
Commit
5dd9b7a5
authored
Nov 28, 2019
by
bbaer
Browse files
removed uneeded change
parent
2cb7ed77
Pipeline
#2798
passed with stages
in 2 minutes and 34 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
javascript/src/Plugins/validator.js
View file @
5dd9b7a5
...
@@ -33,7 +33,7 @@
...
@@ -33,7 +33,7 @@
// ==========================
// ==========================
function
getValue
(
$el
)
{
function
getValue
(
$el
)
{
return
$el
.
is
(
'
[type="checkbox"]
'
)
?
!!
$
(
'
[name="
'
+
$el
.
attr
(
'
name
'
)
+
'
"]:checked
'
).
length
:
return
$el
.
is
(
'
[type="checkbox"]
'
)
?
$el
.
prop
(
'
checked
'
)
:
$el
.
is
(
'
[type="radio"]
'
)
?
!!
$
(
'
[name="
'
+
$el
.
attr
(
'
name
'
)
+
'
"]:checked
'
).
length
:
$el
.
is
(
'
[type="radio"]
'
)
?
!!
$
(
'
[name="
'
+
$el
.
attr
(
'
name
'
)
+
'
"]:checked
'
).
length
:
$el
.
is
(
'
select[multiple]
'
)
?
(
$el
.
val
()
||
[]).
length
:
$el
.
is
(
'
select[multiple]
'
)
?
(
$el
.
val
()
||
[]).
length
:
$el
.
val
()
$el
.
val
()
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment