phoenix_live_view 1.1.29 → 1.1.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/js/phoenix_live_view/hooks.js +1 -1
- package/package.json +1 -1
- package/priv/static/phoenix_live_view.cjs.js +2 -2
- package/priv/static/phoenix_live_view.cjs.js.map +2 -2
- package/priv/static/phoenix_live_view.esm.js +2 -2
- package/priv/static/phoenix_live_view.esm.js.map +2 -2
- package/priv/static/phoenix_live_view.js +2 -2
- package/priv/static/phoenix_live_view.min.js +2 -2
|
@@ -1431,7 +1431,7 @@ Hooks.InfiniteScroll = {
|
|
|
1431
1431
|
}
|
|
1432
1432
|
},
|
|
1433
1433
|
updated() {
|
|
1434
|
-
if (!this.scrollContainer.isConnected) {
|
|
1434
|
+
if (this.scrollContainer && !this.scrollContainer.isConnected) {
|
|
1435
1435
|
this.destroyed();
|
|
1436
1436
|
this.mounted();
|
|
1437
1437
|
}
|
|
@@ -5948,7 +5948,7 @@ var LiveSocket = class {
|
|
|
5948
5948
|
}
|
|
5949
5949
|
// public
|
|
5950
5950
|
version() {
|
|
5951
|
-
return "1.1.
|
|
5951
|
+
return "1.1.30";
|
|
5952
5952
|
}
|
|
5953
5953
|
isProfileEnabled() {
|
|
5954
5954
|
return this.sessionStorage.getItem(PHX_LV_PROFILE) === "true";
|