Skip to content

Commit b0a0d09

Browse files
averissimovedhav
andauthored
Update shiny version missing in #309 (#312)
# Pull Request <!--- Replace `#nnn` with your issue link for reference. --> Fixes #311 #### Changes description - Bumps `shiny` to `v1.11.1` when the change was introduced - This is optional as it appears to work with previous versions, @vedhav any specific reason why it wasn't added in the previous PR? - Fixes behavior back to default (`event` -> `deferred`) - with `event` priority the trigger enters an infinite loop > Provide a new value of {priority: "event"} to always send now, even if the value hasn't changed. --------- Signed-off-by: André Veríssimo <[email protected]> Signed-off-by: Vedha Viyash <[email protected]> Co-authored-by: Vedha Viyash <[email protected]>
1 parent a1ad246 commit b0a0d09

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Imports:
3131
lifecycle (>= 0.2.0),
3232
methods,
3333
rtables (>= 0.6.6),
34-
shiny (>= 1.6.0),
34+
shiny (>= 1.8.1),
3535
shinyjs (>= 2.1.0),
3636
shinyWidgets (>= 0.5.1),
3737
styler (>= 1.2.0)

inst/draggable-buckets/draggable-buckets.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ $.extend(draggableBuckets, {
9090
subscribe: function (el, callback) {
9191
if (this.observers === undefined) this.observers = {};
9292
this.observers[el] = new MutationObserver(function () {
93-
callback({ priority: "event" });
93+
callback({ priority: "deferred" });
9494
});
9595
this.observers[el].observe(el, {
9696
subtree: true,

0 commit comments

Comments
 (0)