Skip to content

Commit

Permalink
Remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
rrrnld committed Nov 24, 2018
1 parent bd511bb commit a6b14d6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/cljs/airsonic_ui/components/library/views.cljs
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
(ns airsonic-ui.components.library.views
(:require [re-frame.core :refer [subscribe]]
[airsonic-ui.config :as conf]
[airsonic-ui.routes :as routes :refer [url-for]]
[airsonic-ui.components.collection.views :as collection]
[airsonic-ui.helpers :refer [add-classes]]))
[airsonic-ui.components.collection.views :as collection]))

(defn tabs [{:keys [items active-item]}]
[:div.tabs
Expand All @@ -12,6 +10,7 @@
^{:key idx} [:li (when (= params active-item)
{:class-name "is-active"})
[:a {:href (apply url-for route)} label]]))]])

;; this variable determines how many pages before the first known page we should list
(def page-padding 2)

Expand Down

0 comments on commit a6b14d6

Please sign in to comment.