mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Remove trailing whitespace.
This commit is contained in:
@@ -505,7 +505,7 @@ Template.api.onConnection = {
|
||||
descr: "The function to call with the session when a new DDP connection is established."}
|
||||
]
|
||||
};
|
||||
|
||||
|
||||
Template.api.ddp_session = {
|
||||
id: "ddp_session",
|
||||
name: "DDP.Session",
|
||||
|
||||
@@ -552,7 +552,7 @@ if (Meteor.isServer) (function () {
|
||||
username: username,
|
||||
password: 'password'
|
||||
});
|
||||
|
||||
|
||||
makeTestConnection(
|
||||
test,
|
||||
function (connection, session) {
|
||||
|
||||
@@ -104,12 +104,12 @@ WebApp.connectHandlers.use(function(req, res, next) {
|
||||
|
||||
if (Package.autoupdate) {
|
||||
var version = Package.autoupdate.Autoupdate.autoupdateVersion;
|
||||
if (version !== WebApp.clientHash)
|
||||
if (version !== WebApp.clientHash)
|
||||
manifest += "# " + version + "\n";
|
||||
}
|
||||
|
||||
manifest += "\n";
|
||||
|
||||
|
||||
manifest += "CACHE:" + "\n";
|
||||
manifest += "/" + "\n";
|
||||
_.each(WebApp.clientProgram.manifest, function (resource) {
|
||||
|
||||
@@ -54,7 +54,7 @@ _.extend(Retry.prototype, {
|
||||
|
||||
// Call `fn` after a delay, based on the `count` of which retry this is.
|
||||
retryLater: function (count, fn) {
|
||||
var self = this;
|
||||
var self = this;
|
||||
var timeout = self._timeout(count);
|
||||
if (self.retryTimer)
|
||||
clearTimeout(self.retryTimer);
|
||||
|
||||
Reference in New Issue
Block a user