Commit b016a54d authored by Cédric Le Ninivin's avatar Cédric Le Ninivin

Fix concurrency issue in landing.js

parent cbd34af8
...@@ -194,10 +194,10 @@ ...@@ -194,10 +194,10 @@
g.props.element = element; g.props.element = element;
}) })
.push(function () { .push(function () {
return RSVP.all([ return getStorageGadget(g);
getStorageGadget(g), })
g.render({}) .push(function () {
]); return g.render({});
}); });
}); });
}(rJS, RSVP, JSZip, jIO)); }(rJS, RSVP, JSZip, jIO));
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment