(js) Fix usage of the "export" reserved word

This commit is contained in:
Francis Lachapelle
2016-05-17 14:31:31 -04:00
parent 00e0aa7ab4
commit 8c4d4e0e2d
2 changed files with 3 additions and 3 deletions
@@ -546,12 +546,12 @@
};
/**
* @function export
* @function exportFolder
* @memberof Mailbox.prototype
* @desc Export this mailbox
* @returns a promise of the HTTP operation
*/
Mailbox.prototype.export = function() {
Mailbox.prototype.exportFolder = function() {
return Mailbox.$$resource.download(this.id, 'exportFolder');
};