-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/fix_upgraded
Conflicts: project.clj
- Loading branch information
Showing
25 changed files
with
290 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#_ | ||
(:require [om-bootstrap.pager :as pg]) | ||
|
||
(pg/pagination {} | ||
(pg/previous {:disabled? true}) | ||
(pg/page {} "1") | ||
(pg/page {} "2") | ||
(pg/page {:active? true} "3") | ||
(pg/next {})) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#_ | ||
(:require [om-bootstrap.pager :as pg]) | ||
|
||
(pg/pagination {} | ||
(pg/page {} "1") | ||
(pg/page {} "2") | ||
(pg/page {} "3")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#_ | ||
(:require [om-bootstrap.pager :as pg]) | ||
|
||
(pg/pagination {} | ||
(pg/previous {:disabled? true}) | ||
(pg/page {} "1") | ||
(pg/page {} "2") | ||
(pg/page {} "3") | ||
(pg/next {})) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#_ | ||
(:require [om-bootstrap.pager :as pg]) | ||
|
||
(pg/pagination {} | ||
(pg/previous {}) | ||
(pg/page {} "1") | ||
(pg/page {} "2") | ||
(pg/page {} "3") | ||
(pg/next {})) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#_ | ||
(:require [om-bootstrap.panel :as p]) | ||
|
||
(p/panel {:header "Collapse Me!" | ||
:collapsible? true} | ||
(d/span "Sometimes I'm here, sometimes I'm not")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#_ | ||
(:require [om-bootstrap.progress-bar :as pb]) | ||
|
||
(pb/progress-bar {:now 70 :active? true}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#_ | ||
(:require [om-bootstrap.progress-bar :as pb]) | ||
|
||
(pb/progress-bar {:min 0 :max 100 :now 50}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#_ | ||
(:require [om-bootstrap.progress-bar :as pb]) | ||
|
||
(for [context [nil "primary" "success" "info" "warning" "danger"]] | ||
(pb/progress-bar (merge {:now 50 :label "50%"} | ||
(when context {:bs-style context})))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#_ | ||
(:require [om-bootstrap.progress-bar :as pb]) | ||
|
||
(pb/progress-bar {:min 0 :max 100 :now 50 :label "Loading"}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#_ | ||
(:require [om-bootstrap.progress-bar :as pb]) | ||
|
||
(pb/progress-bar {:min 0 :max 100 :now 50 :label "50%" :sr-only? true}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#_ | ||
(:require [om-bootstrap.progress-bar :as pb]) | ||
|
||
(pb/progress-bar {} | ||
(pb/progress-bar {:now 35 :bs-style "success" :nested? true}) | ||
(pb/progress-bar {:now 20 :bs-style "warning" :striped? true :nested? true}) | ||
(pb/progress-bar {:now 10 :bs-style "danger" :nested? true})) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#_ | ||
(:require [om-bootstrap.progress-bar :as pb]) | ||
|
||
(pb/progress-bar {:now 70 :striped? true}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.