Skip to content

Commit

Permalink
add goog jar, fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Granger <ibdknox@gmail.com>
  • Loading branch information
ibdknox committed Aug 21, 2011
1 parent dbe44e1 commit 0018f43
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion project.clj
@@ -1,4 +1,5 @@
(defproject pinot "0.1.0-SNAPSHOT" (defproject pinot "0.1.0-SNAPSHOT"
:description "Pinot - a ClojureScript client-side framework" :description "Pinot - a ClojureScript client-side framework"
:dependencies [[org.clojure/clojure "1.3.0-beta1"]]) :dependencies [[org.clojure/clojure "1.2.1"]
[goog-jar "1.0.0"]])


2 changes: 1 addition & 1 deletion src/pinot/events.cljs
Expand Up @@ -4,7 +4,7 @@
[pinot.html :as html] [pinot.html :as html]
[clojure.string :as string])) [clojure.string :as string]))


(defn body (atom nil)) (def body (atom nil))


(defn get-body [] (defn get-body []
(if-not @body (if-not @body
Expand Down
1 change: 1 addition & 0 deletions src/pinot/macros.clj
Expand Up @@ -31,3 +31,4 @@
`(remote ~func [~destruct] ~prev)) `(remote ~func [~destruct] ~prev))
`(do ~@body) `(do ~@body)
(reverse bindings)))) (reverse bindings))))

0 comments on commit 0018f43

Please sign in to comment.