Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Luciano Barletta
/
Pruebas-RTO
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
Jobs
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit 1e5a5c99
authored
2025-01-16 13:53:23 -0300
by
Tu Nombre
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Corrijo coma por punto en flotante
1 parent
dde1121e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
protected_static/cargarapida.js
protected_static/cargarapida.js
View file @
1e5a5c9
...
...
@@ -46,7 +46,7 @@ function revisarConvergenciaAlineador (){
const
inputField
=
document
.
getElementById
(
"alineadorEjeDelantero"
);
const
selectField
=
document
.
getElementById
(
"alineadorEjeDelanteroTipo"
);
try
{
const
value
=
parseFloat
(
inputField
.
value
);
const
value
=
parseFloat
(
inputField
.
value
.
replace
(
","
,
"."
)
);
if
(
!
isNaN
(
value
))
{
selectField
.
value
=
value
>=
0
?
"Convergente"
:
"Divergente"
;
}
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
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 post a comment