diff --git a/src/app/cljs/one/sample/animation.cljs b/src/app/cljs/one/sample/animation.cljs index 310174d..10b0064 100644 --- a/src/app/cljs/one/sample/animation.cljs +++ b/src/app/cljs/one/sample/animation.cljs @@ -79,7 +79,7 @@ [] (start (parallel (bind form {:effect :fade :start 1 :end 0 :time 500}) (bind cloud - {:effect :delay :time 500} + {:effect :color :time 500} ; Dummy animation for delay purposes {:effect :fade-in-and-show :time 600})))) (defn show-form @@ -88,7 +88,7 @@ [] (start (serial (parallel (bind cloud {:effect :fade-out-and-hide :time 500}) (bind form - {:effect :delay :time 300} + {:effect :color :time 300} ; Dummy animation for delay purposes form-in)) (bind label fade-in move-down)))) diff --git a/src/lib/cljs/one/browser/animation.cljs b/src/lib/cljs/one/browser/animation.cljs index 6934218..552c953 100644 --- a/src/lib/cljs/one/browser/animation.cljs +++ b/src/lib/cljs/one/browser/animation.cljs @@ -204,9 +204,6 @@ time accel))) -(defmethod standardize :delay [element m] - (standardize element {:effect :color :time (:time m)})) - (comment ;; Color effect examples (def label (get-element "//label[@id='name-input-label']/span"))