diff --git a/resources/public/css/yyy-site.css b/resources/public/css/yyy-site.css index f3b399c..5387c7a 100644 --- a/resources/public/css/yyy-site.css +++ b/resources/public/css/yyy-site.css @@ -126,6 +126,10 @@ /* phones, and, indeed, smaller phones. Adapted to touch; display radically * decluttered */ @media all and (max-device-width: 768px) { + footer { + display: none; + } + #nav{ margin: 0; padding: 0; diff --git a/src/cljs/youyesyet/db.cljs b/src/cljs/youyesyet/db.cljs index 5803072..9659c44 100644 --- a/src/cljs/youyesyet/db.cljs +++ b/src/cljs/youyesyet/db.cljs @@ -72,7 +72,8 @@ :motd "This is a test version only. There is no real data." ;;; the options from among which electors can select. :options [{:id :yes :description "Yes"} {:id :no :description "No"}] - ;;; the currently displayed 'page' within the app. + ;;; the queue of items waiting to be transmitted. :outqueue () + ;;; the currently displayed page within the app. :page :home }) diff --git a/src/cljs/youyesyet/handlers.cljs b/src/cljs/youyesyet/handlers.cljs index 60825c4..deb11f4 100644 --- a/src/cljs/youyesyet/handlers.cljs +++ b/src/cljs/youyesyet/handlers.cljs @@ -79,6 +79,7 @@ {:addresses (cons new-address (remove old-address (:addresses db))) :address new-address + :elector elector :outqueue (cons (assoc args :action :set-intention) (:outqueue db))}))))))