Minor changes.

This commit is contained in:
Lars Jung 2012-02-24 16:37:37 +01:00
parent 041c172a55
commit cdb0f9035d
2 changed files with 105 additions and 103 deletions

View file

@ -29,7 +29,7 @@ h5ai is provided under the terms of the [MIT License](http://github.com/lrsjng/h
## Changelog
### v0.18 - *2012-02-??*
### v0.18 - *2012-02-24*
* adds optional QRCode display
* adds optional filtering for displayed files and folders

View file

@ -1,3 +1,9 @@
/*
* taken from here:
* http://www.webtoolkit.info/javascript-base64.html
* with minor modifications
*/
var Base64 = {
// private property
@ -68,10 +74,7 @@ decode : function (input) {
}
output = Base64._utf8_decode(output);
return output;
return Base64._utf8_decode(output);
},
// private method for UTF-8 encoding
@ -131,5 +134,4 @@ _utf8_decode : function (utftext) {
return string;
}
}