isomorfeus-preact 10.6.52 → 10.6.53
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/ssr/render_core.rb +1 -4
- 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: 91abc0193960a2bb4c05a89d3669887aa626f0c65ce98a6c550431ea025f4231
|
4
|
+
data.tar.gz: e6787cf12925f91c1f506cbae90b10ba56d19c8b74118e29582a20a9892ba471
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 10c01df5cdfe32ed41b65071709462ba1c9d4739b84647de6e53d841e839a62d00b4c6ed4df3000d4f5376bfa9637c0fc0af4488a35d6c8db47309594dce7fac
|
7
|
+
data.tar.gz: e948258d6713e259431f4b323bd68ab5b84b2f226b6f0633fd50960fcec4a835a2ce5e6d72619fcadfde8e6072d7bc5389d5b30d905d27582f5694ad10ad24de
|
@@ -3,10 +3,7 @@ module Isomorfeus
|
|
3
3
|
%x{
|
4
4
|
self.first_pass = function(component_name, props) {
|
5
5
|
if (global.HasTransport) {
|
6
|
-
|
7
|
-
global.Opal.send(global.Opal.Isomorfeus.Transport.$promise_connect(global.IsomorfeusSessionId), 'then', [], ($$1 = function(){
|
8
|
-
self.async_render_pass(component_name, props);
|
9
|
-
}, $$1.$$s = this, $$1.$$arity = 0, $$1))
|
6
|
+
#{Isomorfeus::Transport.promise_connect(`global.IsomorfeusSessionId`).then { `self.async_render_pass(component_name, props)` }}
|
10
7
|
} else {
|
11
8
|
self.async_render_pass(component_name, props);
|
12
9
|
};
|
data/lib/preact/version.rb
CHANGED