projets
/
auf_rh_dae.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
split JS files
[auf_rh_dae.git]
/
project
/
media
/
js
/
dae.js
Commit
Line
Data
f87fe1a1
OL
1
/* string to float */
2
function clean_float(value){
86f1e48d
3
if (isNaN(value) || value == undefined)
f87fe1a1
OL
4
output = 0;
5
else
6
output = parseFloat(value);
7
output = Math.round(output*100)/100;
8
return output;
9
}