projets
/
auf_rh_dae.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e54b7d5
)
[#2068] Réparé une fonction d'arrondissement javascript
author
Eric Mc Sween
<eric.mcsween@auf.org>
Thu, 29 Sep 2011 20:34:25 +0000
(16:34 -0400)
committer
Eric Mc Sween
<eric.mcsween@auf.org>
Thu, 29 Sep 2011 20:56:14 +0000
(16:56 -0400)
project/media/js/dae.js
patch
|
blob
|
blame
|
history
diff --git
a/project/media/js/dae.js
b/project/media/js/dae.js
index
32ac142
..
0b2bff1
100644
(file)
--- a/
project/media/js/dae.js
+++ b/
project/media/js/dae.js
@@
-7,7
+7,7
@@
function clean_float(value){
output = parseFloat(value);
output = Math.round(output*100)/100;
}
- return parseInt(output);
+ return output;
}
function roundNumber(num, dec) {