1
0
mirror of https://github.com/lrsjng/h5ai.git synced 2025-08-08 14:56:35 +02:00

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;
}
}