Add instructions to tutorial 18

This commit is contained in:
David Botton 2021-01-31 20:20:29 -05:00
parent 2fb32556e1
commit cdf83a3630
2 changed files with 8 additions and 4 deletions

View file

@ -7,8 +7,13 @@
(defun on-new-window (body)
(let* ((target1 (create-div body))
(target2 (create-div body))
(object (create-div target1)))
(object (create-div target1))
(msg (create-div body
:content "Drag green box to other yellow box")))
(setf (positioning msg) :fixed)
(setf (top msg) "125px")
(setf (positioning target1) :fixed)
(setf (top target1) "10px")
(setf (left target1) "10px")