Add/update doc links for panels
This commit is contained in:
parent
0126954bca
commit
04ab87b576
|
@ -249,6 +249,7 @@
|
|||
;:class "app-db-path--label"
|
||||
:label "ONLY BEFORE"
|
||||
:style {:margin-left common/gs-7s}
|
||||
:attr {:rel "noopener noreferrer"}
|
||||
:target "_blank"
|
||||
:href utils/diff-link]]]
|
||||
[rc/v-box
|
||||
|
@ -265,6 +266,7 @@
|
|||
;:class "app-db-path--label"
|
||||
:label "ONLY AFTER"
|
||||
:style {:margin-left common/gs-7s}
|
||||
:attr {:rel "noopener noreferrer"}
|
||||
:target "_blank"
|
||||
:href utils/diff-link]]]
|
||||
[rc/v-box
|
||||
|
|
|
@ -90,7 +90,14 @@
|
|||
:children [[rc/checkbox
|
||||
:model ignore-unchanged?
|
||||
;; TODO: change from l2 subs to ignored l2 subs
|
||||
:label [:span "Ignore " [:b {:style {:font-weight "700"}} @ignore-unchanged-l2-count] #_ " unchanged" [:br] "layer 2 subs"]
|
||||
:label [:span "Ignore " [:b {:style {:font-weight "700"}} @ignore-unchanged-l2-count] #_ " unchanged" [:br] "layer 2 subs "
|
||||
|
||||
[:a
|
||||
{:rel "noopener noreferrer"
|
||||
:class "rc-hyperlink-href noselect "
|
||||
:href "https://github.com/Day8/re-frame-trace/blob/master/docs/HyperlinkedInformation/UnchangedLayer2.md"
|
||||
:target "_blank"}
|
||||
"?"]]
|
||||
:style {:margin-top "6px"}
|
||||
:on-change #(rf/dispatch [:subs/ignore-unchanged-subs? %])]]]]]))
|
||||
|
||||
|
@ -178,6 +185,7 @@
|
|||
;:class "app-db-path--label"
|
||||
:label "ONLY BEFORE"
|
||||
:style {:margin-left common/gs-7s}
|
||||
:attr {:rel "noopener noreferrer"}
|
||||
:target "_blank"
|
||||
:href utils/diff-link]]]
|
||||
[rc/v-box
|
||||
|
@ -193,6 +201,7 @@
|
|||
;:class "app-db-path--label"
|
||||
:label "ONLY AFTER"
|
||||
:style {:margin-left common/gs-7s}
|
||||
:attr {:rel "noopener noreferrer"}
|
||||
:target "_blank"
|
||||
:href utils/diff-link]]]
|
||||
[rc/v-box
|
||||
|
|
|
@ -84,7 +84,13 @@
|
|||
[[rc/p "Be careful. There are two problems with these numbers:"]
|
||||
[:ol
|
||||
[:li "Accurately timing anything in the browser is a nightmare. One moment a given function takes 1ms and the next it takes 10ms, and you'll never know why. So bouncy."]
|
||||
[:li "You're currently running the dev build, not the production build. So don't freak out too much. Yet."]]]]]]
|
||||
[:li "You're currently running the dev build, not the production build. So don't freak out too much. Yet."]]
|
||||
[rc/hyperlink-href
|
||||
:label "Timing documentation"
|
||||
:style {:margin-left common/gs-7s}
|
||||
:attr {:rel "noopener noreferrer"}
|
||||
:target "_blank"
|
||||
:href "https://github.com/Day8/re-frame-trace/blob/master/docs/HyperlinkedInformation/UnderstandingTiming.md"]]]]]
|
||||
[rc/v-box
|
||||
:class "timing-details"
|
||||
:children [[:h1 "No timing data available currently."]]])))
|
||||
|
|
Loading…
Reference in New Issue