From bce137ac574a89ea7c80a3995790955437b100e7 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Fri, 1 Sep 2023 10:40:52 +0200 Subject: [PATCH] Remove unneccessary test function --- src/component/accordion.lisp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/component/accordion.lisp b/src/component/accordion.lisp index 097f9cd..6a50726 100644 --- a/src/component/accordion.lisp +++ b/src/component/accordion.lisp @@ -113,10 +113,3 @@ Example: collect (destructuring-bind (&key target name show content) item `(item (header ,target ,name ,show) (collapse ,id ,target ,show ,content))))))) - -(defun show-accordion-example () - "Show an generated accordion example" - (accordion (:id "accordionExample") - (:target "collapseOne" :name "Accordion Item #1" :show t :content "This is the first item's accordion body.") - (:target "collapseTwo" :name "Accordion Item #2" :content "This is the second item's accordion body.") - (:target "collapseThree" :name "Accordion Item #3" :content "This is the second item's accordion body.")))