From ee4e8d30b55c0f731ad7404db71fb9f23bf31414 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Sat, 23 Jan 2016 22:11:42 +0200 Subject: [PATCH] Remove unused function on svg ns. --- src/uxbox/util/svg.cljs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/uxbox/util/svg.cljs b/src/uxbox/util/svg.cljs index 1ee7495fef..e7ddd251a0 100644 --- a/src/uxbox/util/svg.cljs +++ b/src/uxbox/util/svg.cljs @@ -69,10 +69,3 @@ (->> (map #(nth result %) [0 3 1 4 2 5]) (str/join ",") (str/format "matrix(%s)")))) - -(defn apply-transform - [attrs] - (let [transform (calculate-transform attrs)] - (-> attrs - (without-keys [:rotation :width :height :x :y :view-box]) - (assoc :transform transform))))