Skip to content

Commit

Permalink
checkpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
duck1123 committed Jan 16, 2016
1 parent f10a58b commit dd6febf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
1 change: 0 additions & 1 deletion .ackrc
Expand Up @@ -6,7 +6,6 @@
--ignore-dir=node_modules
--ignore-dir=site-ccokbooks
--ignore-dir=target
--ignore-dir=resources/templates
--ignore-dir=roles
--ignore-dir=tmp
--ignore-file=is:Cheffile.lock
Expand Down
7 changes: 6 additions & 1 deletion project.clj
Expand Up @@ -121,7 +121,12 @@
:compiler {:output-to "target/resources/public/cljs/jiksnu.min.js"
:optimizations :advanced
:pretty-print false}}}}}
:test {:cljsbuild
:test {:resource-paths ["target/resources"

"resources"
"test-resources"]

:cljsbuild
{:builds
{
:protractor {:source-paths ["specs"]
Expand Down
6 changes: 3 additions & 3 deletions src/jiksnu/modules/web/views/message_views.clj
@@ -1,11 +1,11 @@
(ns jiksnu.modules.web.views.message-views
(:use [ciste.views :only [defview]]
jiksnu.actions.message-actions))
[jiksnu.actions.message-actions :as actions.message]))

(defview #'inbox-page :html
(defview #'actions.message/inbox-page :html
[request messages]
{:title "Inbox"})

(defview #'outbox-page :html
(defview #'actions.message/outbox-page :html
[request messages]
{:title "Oubox"})

0 comments on commit dd6febf

Please sign in to comment.