Advertisement
pellekrogholt

Untitled

Mar 7th, 2014
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. addMessageView: aMessageView
  2. "Well TabBrush with: some brush appends
  3. - but we like to prepend"
  4. "messagesPlaceHolder := aMessageView with: messagesPlaceHolder.
  5.  
  6. |h h2 t|
  7. Transcript clear.
  8. h := HTMLCanvas new.
  9. h div with: 'foo bar'.
  10. h2 := HTMLCanvas new.
  11. h2 with: h.
  12.  
  13. messagesPlaceHolder with: aMessageView.
  14. "
  15. |htmlTagBrush|
  16. htmlTagBrush := HTMLCanvas new.
  17. htmlTagBrush with: aMessageView.
  18. htmlTagBrush with: messagesPlaceHolder.
  19. messagesPlaceHolder := htmlTagBrush.
  20. ^ aMessageView
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement