mirror of
https://github.com/moparisthebest/mail
synced 2025-01-10 21:18:02 -05:00
Use module.exports instead of exports
This commit is contained in:
parent
d9a2c77aa4
commit
7a20049bbc
@ -265,4 +265,4 @@ self.onConnect = function(callback) {
|
||||
}
|
||||
};
|
||||
|
||||
exports = self;
|
||||
module.exports = self;
|
@ -448,4 +448,4 @@ Auth.prototype.logout = function(callback) {
|
||||
});
|
||||
};
|
||||
|
||||
exports = Auth;
|
||||
module.exports = Auth;
|
@ -226,4 +226,4 @@ OutboxBO.prototype._processOutbox = function(callback) {
|
||||
}
|
||||
};
|
||||
|
||||
exports = OutboxBO;
|
||||
module.exports = OutboxBO;
|
@ -26,4 +26,4 @@ var AboutCtrl = function($scope) {
|
||||
//
|
||||
};
|
||||
|
||||
exports = AboutCtrl;
|
||||
module.exports = AboutCtrl;
|
@ -56,4 +56,4 @@ var AccountCtrl = function($scope) {
|
||||
};
|
||||
};
|
||||
|
||||
exports = AccountCtrl;
|
||||
module.exports = AccountCtrl;
|
@ -115,4 +115,4 @@ var AddAccountCtrl = function($scope, $location, $routeParams) {
|
||||
};
|
||||
};
|
||||
|
||||
exports = AddAccountCtrl;
|
||||
module.exports = AddAccountCtrl;
|
@ -136,4 +136,4 @@ ngModule.directive('keyfileBtn', function() {
|
||||
};
|
||||
});
|
||||
|
||||
exports = ContactsCtrl;
|
||||
module.exports = ContactsCtrl;
|
@ -11,4 +11,4 @@ var DialogCtrl = function($scope) {
|
||||
};
|
||||
};
|
||||
|
||||
exports = DialogCtrl;
|
||||
module.exports = DialogCtrl;
|
@ -68,4 +68,4 @@ var LoginExistingCtrl = function($scope, $location, $routeParams) {
|
||||
}
|
||||
};
|
||||
|
||||
exports = LoginExistingCtrl;
|
||||
module.exports = LoginExistingCtrl;
|
@ -116,4 +116,4 @@ var LoginInitialCtrl = function($scope, $location, $routeParams) {
|
||||
};
|
||||
};
|
||||
|
||||
exports = LoginInitialCtrl;
|
||||
module.exports = LoginInitialCtrl;
|
@ -135,4 +135,4 @@ ngModule.directive('fileReader', function() {
|
||||
};
|
||||
});
|
||||
|
||||
exports = LoginExistingCtrl;
|
||||
module.exports = LoginExistingCtrl;
|
@ -129,4 +129,4 @@ var LoginPrivateKeyDownloadCtrl = function($scope, $location, $routeParams) {
|
||||
};
|
||||
};
|
||||
|
||||
exports = LoginPrivateKeyDownloadCtrl;
|
||||
module.exports = LoginPrivateKeyDownloadCtrl;
|
@ -115,4 +115,4 @@ var SetCredentialsCtrl = function($scope, $location, $routeParams) {
|
||||
};
|
||||
};
|
||||
|
||||
exports = SetCredentialsCtrl;
|
||||
module.exports = SetCredentialsCtrl;
|
@ -98,4 +98,4 @@ var LoginCtrl = function($scope, $location) {
|
||||
}
|
||||
};
|
||||
|
||||
exports = LoginCtrl;
|
||||
module.exports = LoginCtrl;
|
@ -593,4 +593,4 @@ function createDummyMails() {
|
||||
return dummies;
|
||||
}
|
||||
|
||||
exports = MailListCtrl;
|
||||
module.exports = MailListCtrl;
|
@ -203,4 +203,4 @@ ngModule.directive('keyShortcuts', function($timeout) {
|
||||
};
|
||||
});
|
||||
|
||||
exports = NavigationCtrl;
|
||||
module.exports = NavigationCtrl;
|
@ -40,4 +40,4 @@ ngModule.directive('popover', function() {
|
||||
};
|
||||
});
|
||||
|
||||
exports = PopoverCtrl;
|
||||
module.exports = PopoverCtrl;
|
@ -198,4 +198,4 @@ ngModule.directive('focusNext', function() {
|
||||
};
|
||||
});
|
||||
|
||||
exports = PrivateKeyUploadCtrl;
|
||||
module.exports = PrivateKeyUploadCtrl;
|
@ -280,4 +280,4 @@ ngModule.directive('frameLoad', function($timeout, $window) {
|
||||
};
|
||||
});
|
||||
|
||||
exports = ReadCtrl;
|
||||
module.exports = ReadCtrl;
|
@ -133,4 +133,4 @@ var SetPassphraseCtrl = function($scope) {
|
||||
}
|
||||
};
|
||||
|
||||
exports = SetPassphraseCtrl;
|
||||
module.exports = SetPassphraseCtrl;
|
@ -527,4 +527,4 @@ ngModule.directive('attachmentBtn', function() {
|
||||
};
|
||||
});
|
||||
|
||||
exports = WriteCtrl;
|
||||
module.exports = WriteCtrl;
|
@ -119,4 +119,4 @@ function startWorker(options) {
|
||||
options.callback(null, result);
|
||||
}
|
||||
|
||||
exports = Crypto;
|
||||
module.exports = Crypto;
|
@ -21,4 +21,4 @@ self.getKey = function(password, salt, keySize) {
|
||||
return forge.util.encode64(key);
|
||||
};
|
||||
|
||||
exports = self;
|
||||
module.exports = self;
|
@ -447,4 +447,4 @@ function checkSignatureValidity(signatures) {
|
||||
return true;
|
||||
}
|
||||
|
||||
exports = PGP;
|
||||
module.exports = PGP;
|
@ -58,4 +58,4 @@ AdminDAO.prototype.validateUser = function(options, callback) {
|
||||
});
|
||||
};
|
||||
|
||||
exports = AdminDAO;
|
||||
module.exports = AdminDAO;
|
@ -90,4 +90,4 @@ function createKey(i, type) {
|
||||
return key;
|
||||
}
|
||||
|
||||
exports = DeviceStorageDAO;
|
||||
module.exports = DeviceStorageDAO;
|
@ -1724,4 +1724,4 @@ function inlineExternalImages(message) {
|
||||
});
|
||||
}
|
||||
|
||||
exports = EmailDAO;
|
||||
module.exports = EmailDAO;
|
@ -57,4 +57,4 @@ InvitationDAO.prototype.invite = function(options, callback) {
|
||||
}
|
||||
};
|
||||
|
||||
exports = InvitationDAO;
|
||||
module.exports = InvitationDAO;
|
@ -933,4 +933,4 @@ KeychainDAO.prototype.saveLocalPrivateKey = function(privkey, callback) {
|
||||
this._localDbDao.persist(prkLookupKey, privkey, callback);
|
||||
};
|
||||
|
||||
exports = KeychainDAO;
|
||||
module.exports = KeychainDAO;
|
@ -213,4 +213,4 @@ LawnchairDAO.prototype.clear = function(callback) {
|
||||
this._db.nuke(callback);
|
||||
};
|
||||
|
||||
exports = LawnchairDAO;
|
||||
module.exports = LawnchairDAO;
|
@ -193,4 +193,4 @@ PrivateKeyDAO.prototype.download = function(options, callback) {
|
||||
}, callback);
|
||||
};
|
||||
|
||||
exports = PrivateKeyDAO;
|
||||
module.exports = PrivateKeyDAO;
|
@ -100,4 +100,4 @@ PublicKeyDAO.prototype.remove = function(keyId, callback) {
|
||||
this._restDao.remove(uri, callback);
|
||||
};
|
||||
|
||||
exports = PublicKeyDAO;
|
||||
module.exports = PublicKeyDAO;
|
@ -118,4 +118,4 @@ RestDAO.prototype._processRequest = function(options, callback) {
|
||||
xhr.send(options.payload ? JSON.stringify(options.payload) : undefined);
|
||||
};
|
||||
|
||||
exports = RestDAO;
|
||||
module.exports = RestDAO;
|
@ -52,4 +52,4 @@ function handleBackButton(event) {
|
||||
}
|
||||
}
|
||||
|
||||
exports = backBtnHandler;
|
||||
module.exports = backBtnHandler;
|
@ -290,4 +290,4 @@ function createError(code, message, underlyingError) {
|
||||
return error;
|
||||
}
|
||||
|
||||
exports = ConnectionDoctor;
|
||||
module.exports = ConnectionDoctor;
|
@ -55,4 +55,4 @@ dl.createDownload = function(options) {
|
||||
}
|
||||
};
|
||||
|
||||
exports = dl;
|
||||
module.exports = dl;
|
@ -30,4 +30,4 @@ er.attachHandler = function(scope) {
|
||||
};
|
||||
};
|
||||
|
||||
exports = er;
|
||||
module.exports = er;
|
@ -55,4 +55,4 @@ self.close = function(notification) {
|
||||
notification.close();
|
||||
};
|
||||
|
||||
exports = self;
|
||||
module.exports = self;
|
@ -96,4 +96,4 @@ OAuth.prototype.queryEmailAddress = function(token, callback) {
|
||||
});
|
||||
};
|
||||
|
||||
exports = OAuth;
|
||||
module.exports = OAuth;
|
@ -127,4 +127,4 @@ UpdateHandler.prototype.checkForUpdate = function(dialog) {
|
||||
}
|
||||
};
|
||||
|
||||
exports = UpdateHandler;
|
||||
module.exports = UpdateHandler;
|
@ -24,4 +24,4 @@ function updateV1(options, callback) {
|
||||
});
|
||||
}
|
||||
|
||||
exports = updateV1;
|
||||
module.exports = updateV1;
|
@ -23,4 +23,4 @@ function updateV2(options, callback) {
|
||||
});
|
||||
}
|
||||
|
||||
exports = updateV2;
|
||||
module.exports = updateV2;
|
@ -23,4 +23,4 @@ function update(options, callback) {
|
||||
});
|
||||
}
|
||||
|
||||
exports = update;
|
||||
module.exports = update;
|
@ -100,4 +100,4 @@ function update(options, callback) {
|
||||
}
|
||||
}
|
||||
|
||||
exports = update;
|
||||
module.exports = update;
|
@ -51,4 +51,4 @@ function update(options, callback) {
|
||||
});
|
||||
}
|
||||
|
||||
exports = update;
|
||||
module.exports = update;
|
Loading…
Reference in New Issue
Block a user