Background: I'm working on file uploading in Meteor.js
, when I do a hot code push the client refresh their pages, but if they are during a file upload this stops.
My question: "Is the Meteor hot code push
a total refresh of the app?"
- If so then I'm out of luck, since the
file
input cannot survive in a session/cookie. but: - If not then how can I recieve hot code push
event
? (is there aMeteor.addListener
for this?)
(no, I dont have any code since this is a general Meteor.js
question)