Re: problem with extern file using cljsbuild

2012-10-14 Thread Wei Hsu
Thanks Pierre, your comment helped me track down and remove the line (:require [google.maps :as maps]) which compiled to goog.require('google.maps'). I forgot that you couldn't "require" externs. So do I always have to reference external symbols by their fully qualified names? e.g. google.maps.

Re: problem with extern file using cljsbuild

2012-10-14 Thread Pierre Henry
Following the link to the extern file it seems the *google.map *lib is not found when the VM loader try to load your code... Le dimanche 14 octobre 2012 13:14:33 UTC+2, Wei Hsu a écrit : > > I'm using the Google Maps API in my Clojurescript project, which worked > fine until I compiled in adva

problem with extern file using cljsbuild

2012-10-14 Thread Wei Hsu
I'm using the Google Maps API in my Clojurescript project, which worked fine until I compiled in advanced mode. The compiler doesn't seem to pick up the extern filethat I specified. Could someone point