Skip to content

Commit

Permalink
remove event log in waiter.js fixes #83
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnCoene committed Jan 31, 2021
1 parent 003795d commit 067ee12
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

- Fixed `waiter_hide_on_render` see [#79](https://github.com/JohnCoene/waiter/issues/79).
- Added `waiter_preloader` shows the full page loading screen when the app is loaded and automatically removes it when all the UI is rendered: only runs once. [#82](https://github.com/JohnCoene/waiter/issues/82)
- Remove logging of shiny event, [#83](https://github.com/JohnCoene/waiter/issues/83)

# waiter 0.2.0

Expand Down
1 change: 1 addition & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ List of changes made to waiter.

- Fixed `waiter_hide_on_render` see [#79](https://github.com/JohnCoene/waiter/issues/79).
- Added `waiter_preloader` shows the full page loading screen when the app is loaded and automatically removes it when all the UI is rendered: only runs once. [#82](https://github.com/JohnCoene/waiter/issues/82)
- Remove logging of shiny event, [#83](https://github.com/JohnCoene/waiter/issues/83)

## waiter 0.2.0

Expand Down
1 change: 0 additions & 1 deletion inst/assets/waiter/waiter.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,6 @@ function hide_recalculate(id){

// remove when output receives value
$(document).on('shiny:value', function(event) {
console.log(event);
if(waiter_to_hide.indexOf(event.name) > 0){
hide_waiter(event.name);
}
Expand Down

0 comments on commit 067ee12

Please sign in to comment.