Commit 1143975d12695c4db419ff9b75aa4d7177a7922b
Merge branch 'hyperscript'
Anders Rune Jensen committed on 10/12/2017, 7:18:13 PMParent: d12d51a61f5085da816cef02fbd79c5e406125ba
Parent: 880f0401de03d40ddee364368a08983f02495fd6
Files changed
render.js | changed |
render.js | ||
---|---|---|
@@ -438,8 +438,12 @@ | ||
438 | 438 … | ['Unfollowed ', |
439 | 439 … | h('a', { href: base + c.contact }, name)]); |
440 | 440 … | } else if (typeof c == "string") { |
441 | 441 … | return h('span.status', 'Wrote something private') |
442 … | + } else if (c.type == "chess_move") { | |
443 … | + return h('span.status', 'Moved a chess piece') | |
444 … | + } else if (c.type == "chess_invite") { | |
445 … | + return h('span.status', 'Started a chess game') | |
442 | 446 … | } |
443 | 447 … | else if (c.type == "about") { |
444 | 448 … | return [h('span.status', 'Changed something in about'), |
445 | 449 … | renderDefault(c)]; |
Built with git-ssb-web