summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRasmus Andersson <rasmus@notion.se>2019-01-06 22:56:24 +0300
committerRasmus Andersson <rasmus@notion.se>2019-01-06 22:56:24 +0300
commitee3e41695213cc4bad28f3ea9177018e62da66b9 (patch)
treedc45aa3bad9627e31a0ce8ee6dda0903c5abf8ee /docs
parent897201a74d12b12d4d2d5cff8d2f310d9f5b2a44 (diff)
downloadinter-ee3e41695213cc4bad28f3ea9177018e62da66b9.tar.xz
website: remove console.log
Diffstat (limited to 'docs')
-rw-r--r--docs/res/ctxedit.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/res/ctxedit.js b/docs/res/ctxedit.js
index 54243ad59..ef3cf040d 100644
--- a/docs/res/ctxedit.js
+++ b/docs/res/ctxedit.js
@@ -48,7 +48,6 @@ class FontStyleProp {
valueInStyle(s) {
let italic = s['font-style'] == 'italic' || s['font-style'].indexOf('oblique') != -1
let weight = parseFloat(s['font-weight'])
- console.log("s['font-weight']:", s['font-weight'])
if (isNaN(weight)) {
weight = s['font-weight']
if (weight == 'thin') { return italic ? 'thin-italic' : 'thin' }