1
1
mirror of https://github.com/rsms/inter.git synced 2024-11-23 03:26:15 +03:00

website: remove console.log

This commit is contained in:
Rasmus Andersson 2019-01-06 11:56:24 -08:00
parent 897201a74d
commit ee3e416952

View File

@ -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' }