diff options
| author | s-ol <s-ol@users.noreply.github.com> | 2018-10-26 16:25:31 +0000 |
|---|---|---|
| committer | s-ol <s-ol@users.noreply.github.com> | 2018-10-26 16:25:31 +0000 |
| commit | 50f160f897e04b9b122b3f17077c92ac0bb23732 (patch) | |
| tree | 0fc4b05cfd1bd514c446c43879f76bf48b3e8709 /lib/html.server.moon | |
| parent | like, lots of new stuff 4 tablefs (diff) | |
| download | mmm-50f160f897e04b9b122b3f17077c92ac0bb23732.tar.gz mmm-50f160f897e04b9b122b3f17077c92ac0bb23732.zip | |
allow style props in html.client
Diffstat (limited to 'lib/html.server.moon')
| -rw-r--r-- | lib/html.server.moon | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/html.server.moon b/lib/html.server.moon index e1d1f59..3a7b537 100644 --- a/lib/html.server.moon +++ b/lib/html.server.moon @@ -12,7 +12,7 @@ element = (element) -> (...) -> b = "<#{element}" for k,v in opairs attributes - if 'table' == type v + if k == 'style' and 'table' == type v tmp = '' for kk, vv in opairs v tmp ..= "#{kk}: #{vv}; " |
