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
1 changed files with 1 additions and 9 deletions

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() {}
});