Skip to content

Commit

Permalink
style the podcast modal
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Niles committed Nov 10, 2016
1 parent 9e36277 commit 54a6901
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions lib/vrng/src/vrng/talk.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@
[:p {:class "lead"} (t "embed_instructions")]
[:textarea {:rows "3"} (embed-code)]
[:p [:a {:href (blog-url "support/embed-talks") :target "_blank"}
"You need help?"]]])
"Need help?"]]])

(defn modal-pin-comp []
[:div
Expand All @@ -480,16 +480,18 @@

(defn modal-podcast-comp []
[:div
[:p
[:form [:input#podcast-link {:field :text :id :podcast-link :value (:podcast-url @page-state)}]]]
[:p
[:a {:class "button hollow btn-hover-yellow"
:href (:itunes-url @page-state) :target "_blank"
:on-click (track-event (str "podcast itunes talk:" (:id talk)))}
[:span "Open in Itunes"]]
[:span " "]
[:a {:class "button hollow btn-hover-yellow"
:href (:podcast-url @page-state) :target "_blank"
:on-click (track-event (str "podcast http talk:" (:id talk)))}
[:span "Go to RSS feed"]]
[:input.form-control {:field :text :id :podcast-link :disabled true :value (:podcast-url @page-state)}]]])
[:span "Go to RSS feed"]]]])



Expand Down

0 comments on commit 54a6901

Please sign in to comment.