demo waiting for response

This commit is contained in:
David Botton 2021-02-21 10:52:20 -05:00
parent 59698297c5
commit 9bf04093e1
9 changed files with 76 additions and 24 deletions

View file

@ -2105,6 +2105,18 @@ A list of standard cursor types can be found at:
(defmethod remove-from-clog ((obj clog-element))
(js-execute obj (format nil "~A=null;" (script-id obj))))
;;;;;;;;;;;;;
;; destroy ;;
;;;;;;;;;;;;;
(defgeneric destroy (clog-element)
(:documentation "Remove CLOG-Element from the DOM on browser and clog cache
on browser."))
(defmethod destroy ((obj clog-element))
(remove-from-dom obj)
(remove-from-clog obj))
;;;;;;;;;;;
;; click ;;
;;;;;;;;;;;