Added support for encoding and storing requests of type image. Fixes issue 368.

git-svn-id: https://beef.googlecode.com/svn/trunk@1200 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
This commit is contained in:
a.m.saafan@gmail.com
2011-08-17 14:19:25 +00:00
parent ff63d46337
commit a1acb6e397
3 changed files with 9 additions and 11 deletions

View File

@@ -61,7 +61,7 @@ beef.encode.base64 = {
decode : function (input) {
if (window.atob) {
return atob(escape(input));
return escape(atob(input));
}
var output = "";