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 @@
g.props.element = element;
})
.push(function () {
return RSVP.all([
getStorageGadget(g),
g.render({})
]);
return getStorageGadget(g);
})
.push(function () {
return g.render({});
});
});
}(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