Changed "ONLY BEFORE/AFTER" hyperlinks to open in a new page (and applied them to Subs page
This commit is contained in:
parent
c236d1ff63
commit
46c90fb504
|
@ -247,6 +247,7 @@
|
||||||
:children [[rc/hyperlink-href
|
:children [[rc/hyperlink-href
|
||||||
;:class "app-db-path--label"
|
;:class "app-db-path--label"
|
||||||
:label "ONLY BEFORE"
|
:label "ONLY BEFORE"
|
||||||
|
:target "_blank"
|
||||||
:href "https://github.com/Day8/re-frame-trace/wiki/app-db#diff"]]]
|
:href "https://github.com/Day8/re-frame-trace/wiki/app-db#diff"]]]
|
||||||
|
|
||||||
^{:key "only-before-diff"}
|
^{:key "only-before-diff"}
|
||||||
|
@ -262,6 +263,7 @@
|
||||||
:children [[rc/hyperlink-href
|
:children [[rc/hyperlink-href
|
||||||
;:class "app-db-path--label"
|
;:class "app-db-path--label"
|
||||||
:label "ONLY AFTER"
|
:label "ONLY AFTER"
|
||||||
|
:target "_blank"
|
||||||
:href "https://github.com/Day8/re-frame-trace/wiki/app-db#diff"]]]
|
:href "https://github.com/Day8/re-frame-trace/wiki/app-db#diff"]]]
|
||||||
|
|
||||||
^{:key "only-after-diff"}
|
^{:key "only-after-diff"}
|
||||||
|
|
|
@ -195,10 +195,11 @@
|
||||||
:height common/gs-19s
|
:height common/gs-19s
|
||||||
:justify :end
|
:justify :end
|
||||||
:style {:margin (css-join "0px" pad-padding)}
|
:style {:margin (css-join "0px" pad-padding)}
|
||||||
:children [[rc/hyperlink
|
:children [[rc/hyperlink-href
|
||||||
;:class "app-db-path--label"
|
;:class "app-db-path--label"
|
||||||
:label "ONLY BEFORE"
|
:label "ONLY BEFORE"
|
||||||
:on-click #(println "Clicked [ONLY BEFORE]")]]])
|
:target "_blank"
|
||||||
|
:href "https://github.com/Day8/re-frame-trace/wiki/app-db#diff"]]])
|
||||||
(when (and open? diff?)
|
(when (and open? diff?)
|
||||||
[rc/v-box
|
[rc/v-box
|
||||||
:height "60px"
|
:height "60px"
|
||||||
|
@ -212,10 +213,11 @@
|
||||||
:height common/gs-19s
|
:height common/gs-19s
|
||||||
:justify :end
|
:justify :end
|
||||||
:style {:margin (css-join "0px" pad-padding)}
|
:style {:margin (css-join "0px" pad-padding)}
|
||||||
:children [[rc/hyperlink
|
:children [[rc/hyperlink-href
|
||||||
;:class "app-db-path--label"
|
;:class "app-db-path--label"
|
||||||
:label "ONLY AFTER"
|
:label "ONLY AFTER"
|
||||||
:on-click #(println "Clicked [ONLY AFTER]")]]])
|
:target "_blank"
|
||||||
|
:href "https://github.com/Day8/re-frame-trace/wiki/app-db#diff"]]])
|
||||||
(when (and open? diff?)
|
(when (and open? diff?)
|
||||||
[rc/v-box
|
[rc/v-box
|
||||||
:height "60px"
|
:height "60px"
|
||||||
|
|
Loading…
Reference in New Issue