mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
36 lines
1.1 KiB
JavaScript
36 lines
1.1 KiB
JavaScript
if (Meteor.isClient) {
|
|
var sessionVar = Session.get("sessionVar");
|
|
|
|
var maybeCall = function () {
|
|
var A = Package.autoupdate.Autoupdate;
|
|
if (A._clientVersions.hasVersions() && ! A.newClientAvailable()) {
|
|
Meteor.call("clientLoad",
|
|
typeof jsVar === 'undefined' ? 'undefined' : jsVar,
|
|
typeof packageVar === 'undefined' ? 'undefined' : packageVar,
|
|
sessionVar);
|
|
} else {
|
|
setTimeout(maybeCall, 100);
|
|
}
|
|
};
|
|
// Wait a little to "ensure" that "client modified" messages (etc) appear
|
|
// before our messages
|
|
setTimeout(maybeCall, 300);
|
|
|
|
Session.setDefault("sessionVar", true);
|
|
}
|
|
|
|
if (Meteor.isServer) {
|
|
var clientConnections = 0;
|
|
|
|
Meteor.methods({
|
|
clientLoad: function (jsVar, packageVar, sessionVar) {
|
|
// Make sure that the process still has the correct working directory.
|
|
process.cwd();
|
|
console.log("client connected: " + clientConnections++);
|
|
console.log("jsVar: " + jsVar);
|
|
console.log("packageVar: " + packageVar);
|
|
console.log("sessionVar: " + sessionVar);
|
|
}
|
|
});
|
|
}
|