Remove trailing whitespace.

This commit is contained in:
Nick Martin
2013-12-03 03:57:28 -08:00
parent 1c3877eeb6
commit 76808dfce2
4 changed files with 5 additions and 5 deletions

View File

@@ -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",

View File

@@ -552,7 +552,7 @@ if (Meteor.isServer) (function () {
username: username,
password: 'password'
});
makeTestConnection(
test,
function (connection, session) {

View File

@@ -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) {

View File

@@ -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);