isomorfeus-preact 10.6.41 → 10.6.42
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/isomorfeus/preact_view_helper.rb +2 -2
- data/lib/preact/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: 71f0e2e4c50dfd7a41114cd679fcef0288f3003b774e0cf78c73f99f130a5960
|
4
|
+
data.tar.gz: 31c4fed1aaa9bc3d239ca97fe78b8d6355220c1213bf9c9e9aa0442075b2e5f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4ad75f6d1bcee7758a87bfa9a5e8ea27ee87d1fbd7848b1c2d70365445ec05b27ece212da80019b3d493ebd2f2c474bed51c91fb20e4bdf26cfd32c2e21fb2af
|
7
|
+
data.tar.gz: e001b19a26bf518fd86562ad5542a472ac382b6d9779817564e87e256a7e7a19ac657c2947d9603b06ccf97f85d21bd31e61c3cade9dd05109dc5f6bc21112c5
|
@@ -179,8 +179,8 @@ module Isomorfeus
|
|
179
179
|
ctx.exec(ssr_mod)
|
180
180
|
ctx.add_script(key: :first_pass_check, source: '[global.FirstPassFinished, global.NeedFurtherPass, global.Exception ? { message: global.Exception.message, stack: global.Exception.stack } : false ]')
|
181
181
|
ctx.add_script(key: :first_pass_result, source: 'Opal.Isomorfeus.SSR.first_pass_result()')
|
182
|
-
ctx.add_script(key: :still_busy, source: 'let nfp = global.Opal.Isomorfeus.Transport["$busy?"]() || global.Opal.Isomorfeus.store["$recently_dispatched?"](); (nfp == nil) ? false : nfp;')
|
183
|
-
ctx.add_script(key: :store_busy, source: 'let nfp = global.Opal.Isomorfeus.store["$recently_dispatched?"](); (nfp == nil) ? false : nfp;')
|
182
|
+
ctx.add_script(key: :still_busy, source: 'let nfp = global.Opal.Isomorfeus.Transport["$busy?"]() || global.Opal.Isomorfeus.store["$recently_dispatched?"](); (nfp == global.Opal.nil) ? false : nfp;')
|
183
|
+
ctx.add_script(key: :store_busy, source: 'let nfp = global.Opal.Isomorfeus.store["$recently_dispatched?"](); (nfp == global.Opal.nil) ? false : nfp;')
|
184
184
|
ctx.add_script(key: :transport_busy, source: 'global.Opal.Isomorfeus.Transport["$busy?"]()')
|
185
185
|
ctx.add_script(key: :transport_disconnect, source: 'global.Opal.Isomorfeus.Transport.$disconnect()')
|
186
186
|
end
|
data/lib/preact/version.rb
CHANGED