diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-03 21:57:33 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-03 21:57:33 +1300 |
commit | 4aabd4f6256ffca913f9718399b5d6aa778868b8 (patch) | |
tree | 3d7233ee35c21952cbdfb2324a24566128b0bb2b /web/app/view/StateController.js | |
parent | a7a2174c927d27eead9139eb9ff65dc87d7eefbc (diff) | |
download | trackermap-server-4aabd4f6256ffca913f9718399b5d6aa778868b8.tar.gz trackermap-server-4aabd4f6256ffca913f9718399b5d6aa778868b8.tar.bz2 trackermap-server-4aabd4f6256ffca913f9718399b5d6aa778868b8.zip |
Fix some more check style issues
Diffstat (limited to 'web/app/view/StateController.js')
-rw-r--r-- | web/app/view/StateController.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/app/view/StateController.js b/web/app/view/StateController.js index ad44d7ac7..9aa23de64 100644 --- a/web/app/view/StateController.js +++ b/web/app/view/StateController.js @@ -76,7 +76,7 @@ }, formatValue: function (value) { - if (typeof(id) === 'number') { + if (typeof (id) === 'number') { return value.toFixed(2); } else { return value; |