---- Compiler Warning on src/cljs/bigboard/core.cljs line:380 column:4 ---- Cannot infer target type in expression (. this -refs) 376 {:ref "main" :width "100%"}]]) 377 378 (defn home-did-mount [this] 379 (.DataTable 380 (-> this .-refs .-main js/$) ^--- Cannot infer target type in expression (. this -refs) 381 (clj->js 382 {:columns columns 383 :data data 384 :responsive true}))) ---- Compiler Warning : Please see src/cljs/bigboard/core.cljs ---- ---- Compiler Warning on src/cljs/bigboard/core.cljs line:380 column:4 ---- Cannot infer target type in expression (. (.-refs this) -main) 376 {:ref "main" :width "100%"}]]) 377 378 (defn home-did-mount [this] 379 (.DataTable 380 (-> this .-refs .-main js/$) ^--- Cannot infer target type in expression (. (.-refs this) -main) 381 (clj->js 382 {:columns columns 383 :data data 384 :responsive true}))) ---- Compiler Warning : Please see src/cljs/bigboard/core.cljs ---- ---- Compiler Warning on src/cljs/bigboard/core.cljs line:379 column:3 ---- Adding extern to Object for property DataTable due to ambiguous expression (. (-> this .-refs .-main js/$) DataTable (clj->js {:columns columns, :data data, :responsive true})) 375 [:table.ui.celled.table 376 {:ref "main" :width "100%"}]]) 377 378 (defn home-did-mount [this] 379 (.DataTable ^--- Adding extern to Object for property DataTable due to ambiguous expression (. (-> this .-refs .-main js/$) DataTable (clj->js {:columns columns, :data data, :responsive true})) 380 (-> this .-refs .-main js/$) 381 (clj->js 382 {:columns columns 383 :data data 384 :responsive true}))) ---- Compiler Warning : Please see src/cljs/bigboard/core.cljs ---- ---- Compiler Warning on src/cljs/bigboard/core.cljs line:389 column:5 ---- Adding extern to Object for property find due to ambiguous expression (. (js/$ ".dataTables_wrapper") find "table") 386 (defn home-will-unmount [this] 387 (.destroy 388 (.DataTable 389 (.find ^--- Adding extern to Object for property find due to ambiguous expression (. (js/$ ".dataTables_wrapper") find "table") 390 (js/$ ".dataTables_wrapper") 391 "table")) 392 true)) 393 394 (defn home [] ---- Compiler Warning : Please see src/cljs/bigboard/core.cljs ---- ---- Compiler Warning on src/cljs/bigboard/core.cljs line:388 column:4 ---- Adding extern to Object for property DataTable due to ambiguous expression (. (.find (js/$ ".dataTables_wrapper") "table") DataTable) 384 :responsive true}))) 385 386 (defn home-will-unmount [this] 387 (.destroy 388 (.DataTable ^--- Adding extern to Object for property DataTable due to ambiguous expression (. (.find (js/$ ".dataTables_wrapper") "table") DataTable) 389 (.find 390 (js/$ ".dataTables_wrapper") 391 "table")) 392 true)) ---- Compiler Warning : Please see src/cljs/bigboard/core.cljs ---- ---- Compiler Warning on src/cljs/bigboard/core.cljs line:387 column:3 ---- Adding extern to Object for property destroy due to ambiguous expression (. (.DataTable (.find (js/$ ".dataTables_wrapper") "table")) destroy true) 383 :data data 384 :responsive true}))) 385 386 (defn home-will-unmount [this] 387 (.destroy ^--- Adding extern to Object for property destroy due to ambiguous expression (. (.DataTable (.find (js/$ ".dataTables_wrapper") "table")) destroy true) 388 (.DataTable 389 (.find 390 (js/$ ".dataTables_wrapper") 391 "table")) 392 true)) ---- Compiler Warning : Please see src/cljs/bigboard/core.cljs ---- ---- Compiler Warning on src/cljs/bigboard/core.cljs line:427 column:49 ---- Cannot infer target type in expression (. event -token) 423 (doto (History.) 424 (events/listen 425 HistoryEventType/NAVIGATE 426 (fn [event] 427 (swap! session assoc :page (match-route (.-token event))))) ^--- Cannot infer target type in expression (. event -token) 428 (.setEnabled true))) 429 430 ;; ------------------------- 431 ;; Initialize app ---- Compiler Warning : Please see src/cljs/bigboard/core.cljs ---- S