mirror of
https://github.com/moparisthebest/mail
synced 2025-02-16 15:10:10 -05:00
fixed jshint errors
This commit is contained in:
parent
d49d95ab16
commit
79df873d55
@ -122,7 +122,9 @@ define(function(require) {
|
|||||||
* List the folders in the user's IMAP mailbox.
|
* List the folders in the user's IMAP mailbox.
|
||||||
*/
|
*/
|
||||||
EmailDAO.prototype.imapListFolders = function(callback) {
|
EmailDAO.prototype.imapListFolders = function(callback) {
|
||||||
|
callback({
|
||||||
|
errMsg: 'Not yet implemented!'
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -132,7 +134,9 @@ define(function(require) {
|
|||||||
* @param {Number} num The number of items to fetch (null means fetch all)
|
* @param {Number} num The number of items to fetch (null means fetch all)
|
||||||
*/
|
*/
|
||||||
EmailDAO.prototype.imapListMessages = function(options, callback) {
|
EmailDAO.prototype.imapListMessages = function(options, callback) {
|
||||||
|
callback({
|
||||||
|
errMsg: 'Not yet implemented!'
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -140,7 +144,9 @@ define(function(require) {
|
|||||||
* @param {String} options.messageId The
|
* @param {String} options.messageId The
|
||||||
*/
|
*/
|
||||||
EmailDAO.prototype.imapGetMessage = function(options, callback) {
|
EmailDAO.prototype.imapGetMessage = function(options, callback) {
|
||||||
|
callback({
|
||||||
|
errMsg: 'Not yet implemented!'
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
//
|
//
|
||||||
|
Loading…
Reference in New Issue
Block a user