▾ modified common/frq/screens/app.cljc +2 -2 Viewed
@@ -132,7 +132,7 @@ 132 132 (let [pinned? (some? (actions/viewing)) 133 133 {:keys [nick actor]} (or (actions/viewing) (actions/hovering)) 134 134 _ (actions/profile-tick) 135 - _ @actions/media-tick 135 + _ (actions/media-tick) 136 136 pr (actions/profile-entry actor) 137 137 ready? (= :ready (:status pr)) 138 138 display (or (:display-name pr) nick) @@ -207,7 +207,7 @@ 207 207 ;; Reading both ticks subscribes this screen to the two fetches it is 208 208 ;; waiting on: the profile itself, and the picture on it. 209 209 _ (actions/profile-tick) 210 - _ @actions/media-tick 210 + _ (actions/media-tick) 211 211 pr (actions/profile-entry actor) 212 212 ready? (= :ready (:status pr)) 213 213 display (or (:display-name pr) nick)
@@ -132,7 +132,7 @@ 132 (let [pinned? (some? (actions/viewing)) 132 (let [pinned? (some? (actions/viewing)) 133 {:keys [nick actor]} (or (actions/viewing) (actions/hovering)) 133 {:keys [nick actor]} (or (actions/viewing) (actions/hovering)) 134 _ (actions/profile-tick) 134 _ (actions/profile-tick) 135 - _ @actions/media-tick 135 + _ (actions/media-tick) 136 pr (actions/profile-entry actor) 136 pr (actions/profile-entry actor) 137 ready? (= :ready (:status pr)) 137 ready? (= :ready (:status pr)) 138 display (or (:display-name pr) nick) 138 display (or (:display-name pr) nick) @@ -207,7 +207,7 @@ 207 ;; Reading both ticks subscribes this screen to the two fetches it is 207 ;; Reading both ticks subscribes this screen to the two fetches it is 208 ;; waiting on: the profile itself, and the picture on it. 208 ;; waiting on: the profile itself, and the picture on it. 209 _ (actions/profile-tick) 209 _ (actions/profile-tick) 210 - _ @actions/media-tick 210 + _ (actions/media-tick) 211 pr (actions/profile-entry actor) 211 pr (actions/profile-entry actor) 212 ready? (= :ready (:status pr)) 212 ready? (= :ready (:status pr)) 213 display (or (:display-name pr) nick) 213 display (or (:display-name pr) nick)
▾ modified src/frq/cosmic.clj +1 -1 Viewed
@@ -15,7 +15,7 @@ 15 15 and keeps it , so glimmer 's loop runs on a worker. The timers handed to 16 16 ` start! ` are glimmer-cosmic 's , which run on that worker. 17 17 18 - just cosmic " 18 + just run" 19 19 ( :require [ frq.app :as app ] 20 20 [ frq.platform :as platform ] 21 21 [ frq.state :as s ]
@@ -15,7 +15,7 @@ 15 and keeps it , so glimmer 's loop runs on a worker. The timers handed to 15 and keeps it , so glimmer 's loop runs on a worker. The timers handed to 16 ` start! ` are glimmer-cosmic 's , which run on that worker. 16 ` start! ` are glimmer-cosmic 's , which run on that worker. 17 17 18 - just cosmic " 18 + just run" 19 ( :require [ frq.app :as app ] 19 ( :require [ frq.app :as app ] 20 [ frq.platform :as platform ] 20 [ frq.platform :as platform ] 21 [ frq.state :as s ] 21 [ frq.state :as s ]