diff options
author | Rasmus Andersson <rasmus@notion.se> | 2018-10-22 02:11:39 +0300 |
---|---|---|
committer | Rasmus Andersson <rasmus@notion.se> | 2018-10-22 02:11:39 +0300 |
commit | 704e0678061a6ac2c7f3dc22a31da52e9c696f92 (patch) | |
tree | ec7a405e1b49a973645a3eecf02847d548f13a81 | |
parent | 47005dfa197f9973b9fc6d4f753b7d364ee6c85d (diff) | |
download | inter-704e0678061a6ac2c7f3dc22a31da52e9c696f92.tar.xz |
website: rounding of dynamic tracking on front page
-rw-r--r-- | docs/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/index.html b/docs/index.html index 97a4f7b40..18931e636 100644 --- a/docs/index.html +++ b/docs/index.html @@ -577,7 +577,7 @@ var unitFormatters = [ return tracking.toFixed(3) }], ['px', 'px', function(fontSize, tracking) { - return (fontSize * tracking).toFixed(3) + return (fontSize * tracking).toFixed(1) }], ['%', 'percent', function(fontSize, tracking) { return (tracking * 100).toFixed(1) |