diff --git a/docs/client/api.js b/docs/client/api.js index 89a4cf0c75..1dd0fb0d48 100644 --- a/docs/client/api.js +++ b/docs/client/api.js @@ -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", diff --git a/packages/accounts-password/password_tests.js b/packages/accounts-password/password_tests.js index f42880797f..e1a7c47445 100644 --- a/packages/accounts-password/password_tests.js +++ b/packages/accounts-password/password_tests.js @@ -552,7 +552,7 @@ if (Meteor.isServer) (function () { username: username, password: 'password' }); - + makeTestConnection( test, function (connection, session) { diff --git a/packages/appcache/appcache-server.js b/packages/appcache/appcache-server.js index d503440381..89f27ea321 100644 --- a/packages/appcache/appcache-server.js +++ b/packages/appcache/appcache-server.js @@ -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) { diff --git a/packages/livedata/retry.js b/packages/livedata/retry.js index ac155c19e0..d5fdda4d66 100644 --- a/packages/livedata/retry.js +++ b/packages/livedata/retry.js @@ -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);