This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-03-03
Channels
- # bangalore-clj (2)
- # beginners (29)
- # boot (52)
- # cider (4)
- # clara (3)
- # cljs-dev (34)
- # cljsjs (7)
- # cljsrn (3)
- # clojure (71)
- # clojure-austin (1)
- # clojure-dev (5)
- # clojure-france (20)
- # clojure-russia (51)
- # clojure-spec (9)
- # clojure-uk (20)
- # clojurescript (131)
- # core-async (56)
- # core-logic (6)
- # cursive (50)
- # datascript (19)
- # datomic (16)
- # dirac (118)
- # emacs (100)
- # events (4)
- # hoplon (14)
- # incanter (1)
- # jobs (7)
- # jobs-discuss (96)
- # jobs-rus (21)
- # lein-figwheel (5)
- # leiningen (21)
- # off-topic (11)
- # om (45)
- # onyx (42)
- # pamela (1)
- # pedestal (22)
- # portland-or (3)
- # re-frame (8)
- # reagent (5)
- # ring (9)
- # robots (1)
- # spacemacs (14)
- # specter (28)
- # sql (2)
- # untangled (165)
hey @tiensonqin. How do you get sourcemap support working in your exponent template? When I start exponent it says Source maps enabled.
and Chrome’s devtools says Source Map Detected
. But all of my stacktraces are the Closure compiled .js files.
@seantempesta It uses the same trick as in re-natal: https://github.com/drapanjanas/re-natal/blob/master/re-natal.coffee#L323-L327 I remembered it works for me, will check it later, thanks for trying it.
what is the correct way of calling a static method in a class. I tried using the react-native-fbsdk https://github.com/facebook/react-native-fbsdk and got as far as getting the button to show in my app but then the example uses this AccessToken.getCurrentAccessToken which is a static member of that class and I am at a loss on how to do this in the re-natal app. Are there conventions for calling methods listed someplace?