1
0
mirror of https://github.com/moparisthebest/mail synced 2024-08-13 16:43:47 -04:00

removed base64 decoding in email model

This commit is contained in:
Tankred Hase 2013-04-05 17:11:32 +02:00
parent 104bc734f6
commit 84c9abcd36

View File

@ -14,15 +14,7 @@
sentDate: null
},
initialize: function() {
// decode body
try {
var decodedBody = window.atob(this.get('body'));
this.set('body', decodedBody);
} catch (ex) {
console.log(ex);
}
}
initialize: function() {}
});