mirror of
https://github.com/rabbibotton/clog.git
synced 2025-12-05 18:20:36 -08:00
Add DETACH-FROM-DOM method to CLOG-ELEMENT
This commit is contained in:
parent
961b87f285
commit
5e55dfcd65
1 changed files with 10 additions and 0 deletions
|
|
@ -2354,6 +2354,16 @@ is not stored in connection-data will become subject to browser-gc requests."))
|
|||
(defmethod remove-from-dom ((obj clog-element))
|
||||
(jquery-execute obj "remove()"))
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;
|
||||
;; detach-from-dom ;;
|
||||
;;;;;;;;;;;;;;;;;;;;;
|
||||
|
||||
(defgeneric detach-from-dom (clog-element)
|
||||
(:documentation "Detach CLOG-Element from the DOM."))
|
||||
|
||||
(defmethod detach-from-dom ((obj clog-element))
|
||||
(jquery-execute obj "detach()"))
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;
|
||||
;; remove-from-clog ;;
|
||||
;;;;;;;;;;;;;;;;;;;;;;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue