fix(ios): allow editing scheduled and deadline timestamp

pull/3535/head
leizhe 2021-12-20 21:18:42 +08:00 committed by Tienson Qin
parent fd7bb2c64a
commit 4417365d21
2 changed files with 8 additions and 0 deletions

View File

@ -1740,6 +1740,7 @@
(d/has-class? target "forbid-edit")
(d/has-class? target "bullet")
(util/link? target)
(util/time? target)
(util/input? target)
(util/details-or-summary? target)
(and (util/sup? target)

View File

@ -472,6 +472,13 @@
#{"A" "BUTTON"}
(gobj/get node "tagName"))))
#?(:cljs
(defn time?
[node]
(contains?
#{"TIME"}
(gobj/get node "tagName"))))
#?(:cljs
(defn sup?
[node]