pg_rails 7.0.8.pre.alpha.64 → 7.0.8.pre.alpha.65
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/pg_layout/app/javascript/application.js +2 -2
- data/pg_rails/lib/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c1b7d742107efb7bfdd00d458d0df8b298395702ae8aacaa1cf1ffe9083ca09e
|
4
|
+
data.tar.gz: 2592e3ec5a153c28314bab3c754c86dfee514fe5cf308380bae1324e14167565
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1022d09e2a8fad3a7bca4cf92038ed521951daca564ecbca33c52c440cf565bd71758edbc7445f68e023c1eea4292647f50350f378675063912d1c3556a26030
|
7
|
+
data.tar.gz: 10910645b466eeb4bcbaae5610977f4ed61fe4c5886e9562ac25d3a4970f3b9a3c2f3153843d0be3f3d69e2c829683f5b1178e1ed8bb2d56f770aae3b6a8724c
|
@@ -49,11 +49,11 @@ function bindToastElements () {
|
|
49
49
|
const toastQuery = '.pg-toast:not(.hide):not(.show)'
|
50
50
|
|
51
51
|
const toastElList = document.querySelectorAll(toastQuery)
|
52
|
-
Array.from(toastElList).
|
53
|
-
new bootstrap.Toast(toastEl).show()
|
52
|
+
Array.from(toastElList).map(toastEl => {
|
54
53
|
toastEl.addEventListener('hidden.bs.toast', () => {
|
55
54
|
toastEl.remove()
|
56
55
|
})
|
56
|
+
return new bootstrap.Toast(toastEl).show()
|
57
57
|
})
|
58
58
|
}
|
59
59
|
|
data/pg_rails/lib/version.rb
CHANGED