diff options
author | ASP1234 | 2016-06-23 06:16:36 +0000 |
---|---|---|
committer | ASP1234 | 2016-06-23 06:16:36 +0000 |
commit | f4b2f58f7d914e63c88670a1fb6b9699c5f96d18 (patch) | |
tree | a6d7ccf225697d4b96918d6fe88e2a8cbf8c7425 /details.js | |
parent | df95727dc6cdfc23f820f62cf50b552cf90f058b (diff) | |
download | xcos-on-web-f4b2f58f7d914e63c88670a1fb6b9699c5f96d18.tar.gz xcos-on-web-f4b2f58f7d914e63c88670a1fb6b9699c5f96d18.tar.bz2 xcos-on-web-f4b2f58f7d914e63c88670a1fb6b9699c5f96d18.zip |
Beautify JS
Diffstat (limited to 'details.js')
-rw-r--r-- | details.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -274,10 +274,10 @@ function ScilabDouble() { for (j = 0; j < this.width; j++) { this["data" + i + j] = new data(); if(array[i][j] % 1 == 0) { - this["data" + i + j].realPart = array[i][j].toFixed(1); + this["data" + i + j].realPart = array[i][j].toFixed(1); } else { - this["data" + i + j].realPart = array[i][j]; + this["data" + i + j].realPart = array[i][j]; } this["data" + i + j].line = i; this["data" + i + j].column = j; |