Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Walter Felipe
submeta
Commits
721ddb4f
Unverified
Commit
721ddb4f
authored
2 years ago
by
Antônio Durval
Committed by
GitHub
2 years ago
Browse files
Options
Download
Plain Diff
Merge pull request #868 from antonioDurval/master
Correção no filtro para editais que só possuem adHoc
parents
3e782b87
3bfc9e65
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
resources/views/administrador/analisarProposta.blade.php
+12
-10
resources/views/administrador/analisarProposta.blade.php
with
12 additions
and
10 deletions
+12
-10
resources/views/administrador/analisarProposta.blade.php
View file @
721ddb4f
...
...
@@ -2275,21 +2275,23 @@
//console.log(seletor[0].children[0].text)=
function
buscar
(
input
)
{
let
seletor1
=
document
.
getElementById
(
'exampleFormControlSelect2'
)
.
children
;
let
seletor2
=
document
.
getElementById
(
'exampleFormControlSelect3'
)
.
children
;
if
(
document
.
getElementById
(
'exampleFormControlSelect2'
)
!=
null
){
let
seletor1
=
document
.
getElementById
(
'exampleFormControlSelect2'
)
.
children
;
for
(
let
i
=
0
;
i
<
seletor1
.
length
;
i
++
){
let
nomeAval1
=
seletor1
[
i
]
.
textContent
for
(
let
i
=
0
;
i
<
seletor1
.
length
;
i
++
){
let
nomeAval1
=
seletor1
[
i
]
.
textContent
if
(
nomeAval1
.
toLowerCase
()
.
substr
(
0
)
.
indexOf
(
input
.
value
.
toLowerCase
())
>=
0
){
seletor1
[
i
]
.
style
.
display
=
""
;
}
else
{
seletor1
[
i
]
.
style
.
display
=
"none"
;
if
(
nomeAval1
.
toLowerCase
()
.
substr
(
0
)
.
indexOf
(
input
.
value
.
toLowerCase
())
>=
0
){
seletor1
[
i
]
.
style
.
display
=
""
;
}
else
{
seletor1
[
i
]
.
style
.
display
=
"none"
;
}
}
}
let
seletor2
=
document
.
getElementById
(
'exampleFormControlSelect3'
)
.
children
;
for
(
let
j
=
0
;
j
<
seletor2
.
length
;
j
++
){
let
nomeAval1
=
seletor2
[
j
]
.
textContent
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
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