Merge branch 'wch/redundant-setinput'

This commit is contained in:
Winston Chang
2017-02-28 09:23:17 -06:00
2 changed files with 2 additions and 4 deletions

View File

@@ -34,6 +34,8 @@ in shiny apps. For more info, see the documentation (`?updateQueryString` and `?
* Fixed [#162](https://github.com/rstudio/shiny/issues/162): When a dynamically-generated input changed to a different `inputType`, it might be incorrectly deduplicated. ([#1594](https://github.com/rstudio/shiny/pull/1594))
* Removed redundant call to `inputs.setInput`. ([#1595](https://github.com/rstudio/shiny/pull/1595))
### Library updates
* Closed [#1500](https://github.com/rstudio/shiny/issues/1500): Updated ion.rangeSlider to 2.1.6. ([#1540](https://github.com/rstudio/shiny/pull/1540))

View File

@@ -160,10 +160,6 @@ function initShiny() {
binding: binding,
bindingType: 'input'
});
if (shinyapp.isConnected()) {
valueChangeCallback(binding, el, false);
}
}
}