diff --git a/lib/vrng/src/vrng/talk.cljs b/lib/vrng/src/vrng/talk.cljs index 68de8afb4..eaa3d1d5e 100644 --- a/lib/vrng/src/vrng/talk.cljs +++ b/lib/vrng/src/vrng/talk.cljs @@ -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 @@ -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"]]]])