mirror of
https://github.com/rabbibotton/clog.git
synced 2025-12-06 10:40:45 -08:00
style warning corrections
This commit is contained in:
parent
f4b0abe422
commit
c2789b85e2
11 changed files with 84 additions and 98 deletions
|
|
@ -40,15 +40,16 @@
|
|||
(col3 (create-div row :class "col-sm-4"))
|
||||
(tmp (create-section col3 :h3 :content "Column 3"))
|
||||
(tmp (create-p col3 :content "Lorem ipsum dolor..")))
|
||||
(set-on-click l1 (lambda (obj)(alert (window body) "Clicked link1")))
|
||||
(set-on-click l1 (lambda (obj)(declare (ignore obj))(alert (window body) "Clicked link1")))
|
||||
(set-on-click l2 (lambda (obj)
|
||||
(declare (ignore obj))
|
||||
(let* ((alert (create-div body :class "alert alert-warning alert-dismissible fade show"))
|
||||
(tmp (create-phrase alert :strong :content "Wow! You clicked link 2"))
|
||||
(btn (create-button alert :class "close" :content "<span>×</span>")))
|
||||
(setf (attribute alert "role") "alert")
|
||||
(setf (attribute btn "data-dismiss") "alert")
|
||||
(place-after nav alert))))
|
||||
(set-on-click l3 (lambda (obj)(setf (color jname) (rgb 128 128 0)))))
|
||||
(set-on-click l3 (lambda (obj)(declare (ignore obj))(setf (color jname) (rgb 128 128 0)))))
|
||||
(run body))
|
||||
|
||||
(defun on-page2 (body)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue