From f0d232da0a410f90b1949cbae5e4e6d03bdcc83f Mon Sep 17 00:00:00 2001 From: "reshmee_011@yahoo.co.uk" Date: Thu, 31 Dec 2015 23:00:23 +0000 Subject: [PATCH] Changes to text on UI Changes to text on UI --- resources/public/index.html | 2 +- src/simplecalculator/core.cljs | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/resources/public/index.html b/resources/public/index.html index d53220c..8804439 100644 --- a/resources/public/index.html +++ b/resources/public/index.html @@ -6,7 +6,7 @@ -

dfgh

+

Welcome to calculators

diff --git a/src/simplecalculator/core.cljs b/src/simplecalculator/core.cljs index d344e08..28108f4 100644 --- a/src/simplecalculator/core.cljs +++ b/src/simplecalculator/core.cljs @@ -117,9 +117,9 @@ (defn home-page [] (let [{:keys [number result operator]} @result-data] - [:div [:h3 "Welcome to calculators"] + [:div [navigation-view] - [:p] + [:h4 "Maths Calculator"] [:input {:type "number" :value number :on-change (fn [e] @@ -197,8 +197,8 @@ (let [{:keys [dob pensiondate age]} @pension-age] [:div [navigation-view] - [:div [:h2 "State Pension Age Calculator"] - [:h4 "Enter Date Of Birth"] + [:div [:h4 "State Pension Age Calculator"] + [:p "Enter Date Of Birth"] [:input {:type "date" :on-change (fn [e] (swap! pension-age assoc :dob (js/Date. (.-target.value e)))) }]