mirror of
https://github.com/rstudio/shiny.git
synced 2026-04-07 03:00:20 -04:00
Fix condition for calling exports.unbindAll(). (Correction to #1449)
This commit is contained in:
2
NEWS.md
2
NEWS.md
@@ -21,6 +21,8 @@ shiny 1.0.3.9000
|
||||
|
||||
* Fixed [#1710](https://github.com/rstudio/shiny/issues/1710): `ReactiveVal` objects did not have separate dependents. ([#1712](https://github.com/rstudio/shiny/pull/1712))
|
||||
|
||||
* Fixed [#1438](https://github.com/rstudio/shiny/issues/1438): `unbindAll()` should not be called when inserting content with `insertUI()`. A previous fix ([#1449](https://github.com/rstudio/shiny/pull/1449)) did not work correctly. ([#1736](https://github.com/rstudio/shiny/pull/1736))
|
||||
|
||||
### Library updates
|
||||
|
||||
|
||||
|
||||
@@ -29,8 +29,6 @@ exports.renderContent = function(el, content, where="replace") {
|
||||
exports.unbindAll(el);
|
||||
}
|
||||
|
||||
exports.unbindAll(el);
|
||||
|
||||
var html;
|
||||
var dependencies = [];
|
||||
if (content === null) {
|
||||
|
||||
Reference in New Issue
Block a user