From 42a92568059f476808659e7588eb6ada3257ffc0 Mon Sep 17 00:00:00 2001 From: Artur Girenko Date: Sat, 30 Jan 2016 18:12:21 +0100 Subject: [PATCH] do not force reload core namespace with ^:figwheel-load annotation - forcing reloading core namespace (using ^:figwheel-load annotation) is wrong. It causes evaluation of wrong js files for platform because both ios and android core.js files are reloaded. --- resources/cljs/core.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/cljs/core.cljs b/resources/cljs/core.cljs index 3c2eb25..b707763 100644 --- a/resources/cljs/core.cljs +++ b/resources/cljs/core.cljs @@ -1,4 +1,4 @@ -(ns ^:figwheel-load $PROJECT_NAME_HYPHENATED$.$PLATFORM$.core +(ns $PROJECT_NAME_HYPHENATED$.$PLATFORM$.core (:require [reagent.core :as r :refer [atom]] [re-frame.core :refer [subscribe dispatch dispatch-sync]] [$PROJECT_NAME_HYPHENATED$.handlers]