Skip to content

Commit

Permalink
rebuild 2.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
pissang committed Jul 1, 2015
1 parent 3e2a3d6 commit 2182d77
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build/dist/echarts-all.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions build/dist/echarts.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/source/echarts-all.js
Original file line number Diff line number Diff line change
Expand Up @@ -17385,7 +17385,7 @@ define('zrender/zrender', [
function getPrecision(val) {
var e = 1;
var count = 0;
while ((val * e | 0) / e !== val) {
while (Math.round(val * e) / e !== val) {
e *= 10;
count++;
}
Expand Down
2 changes: 1 addition & 1 deletion build/source/echarts.js
Original file line number Diff line number Diff line change
Expand Up @@ -18877,7 +18877,7 @@ define('zrender/zrender', [
function getPrecision(val) {
var e = 1;
var count = 0;
while ((val * e | 0) / e !== val) {
while (Math.round(val * e) / e !== val) {
e *= 10;
count++;
}
Expand Down
6 changes: 3 additions & 3 deletions doc/example/www/js/echarts.js

Large diffs are not rendered by default.

0 comments on commit 2182d77

Please sign in to comment.