From f00f6e333499ce188b421f431ef9971fa8fdcc6f Mon Sep 17 00:00:00 2001 From: Dan Holmsand Date: Mon, 16 Dec 2013 23:39:22 +0100 Subject: [PATCH] Fix example --- examples/simple/example.css | 6 +++--- examples/simple/example.html | 4 ++-- examples/simple/src/simpleexample.cljs | 1 - 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/examples/simple/example.css b/examples/simple/example.css index 7557626..03932f7 100644 --- a/examples/simple/example.css +++ b/examples/simple/example.css @@ -1,15 +1,15 @@ div, h1, input { font-family: HelveticaNeue, Helvetica; + color: #777; } .example-clock { font-size: 128px; - line-height: 128px; + line-height: 1.2em; font-family: HelveticaNeue-UltraLight, Helvetica; } .color-input, .color-input input { font-size: 24px; - line-height: 24px; - color: #444; + line-height: 1.5em; } diff --git a/examples/simple/example.html b/examples/simple/example.html index fd34464..0276cec 100644 --- a/examples/simple/example.html +++ b/examples/simple/example.html @@ -3,13 +3,13 @@ cloact simple example - +

This will become an example when the ClojureScript is compiled

diff --git a/examples/simple/src/simpleexample.cljs b/examples/simple/src/simpleexample.cljs index 7aa5ca8..8c87a33 100644 --- a/examples/simple/src/simpleexample.cljs +++ b/examples/simple/src/simpleexample.cljs @@ -1,7 +1,6 @@ (ns simpleexample (:require [cloact.core :as cloact :refer [atom partial]] - [cloact.debug :refer-macros [dbg]] [clojure.string :as string])) (def timer (atom (js/Date.)))