File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1
- (defproject org.clojars.intception /om-widgets " 0.3.38 "
1
+ (defproject org.clojars.intception /om-widgets " 0.3.39 "
2
2
:description " Widgets for OM/React"
3
3
:url " https://github.com/orgs/intception/"
4
4
:license {:name " Eclipse Public License"
Original file line number Diff line number Diff line change 222
222
; ; next month
223
223
(dom/th #js {:className " next"
224
224
:onClick (fn [e]
225
- (om/set-state! owner :date (time/plus date (time/months 1 ))))} " >" )
226
-
227
- ; ; datepicker body
228
- (apply dom/tr nil
229
- (om/build-all day-header days-short))
230
- (om/build weeks-component app {:state {:path path :date date :onChange onChange}}))))))))
225
+ (om/set-state! owner :date (time/plus date (time/months 1 ))))} " >" )))
226
+ ; ; datepicker body
227
+ (apply dom/tr nil
228
+ (om/build-all day-header days-short))
229
+ (om/build weeks-component app {:state {:path path :date date :onChange onChange}}))))))
231
230
232
231
(defn datepicker
233
232
" Datepicker public API
Original file line number Diff line number Diff line change 53
53
54
54
55
55
(defn app-root []
56
- (sel1 " div [data-reactid]" ))
56
+ (or (sel1 " div [data-reactid]" )
57
+ (sel1 " div [data-reactroot]" )))
57
58
58
59
(defn popover-overlay
59
60
[_ owner]
Original file line number Diff line number Diff line change 397
397
nil )
398
398
:placeholder (:placeholder state)
399
399
:disabled (:disabled state)
400
- :typing-timeout (:typing-timeout state)
400
+ ; :typing-timeout (:typing-timeout state)
401
401
:type (condp = (:input-format state)
402
402
" password" " password"
403
403
" numeric" " number"
430
430
(cond (= input-format " numeric" ) " right"
431
431
(= input-format " integer" ) " right"
432
432
(= input-format " currency" ) " right"
433
- :else " left" ))}))}))
433
+ :else " left" ))}))}))
You can’t perform that action at this time.
0 commit comments