mirror of
https://github.com/lrsjng/h5ai.git
synced 2025-05-29 06:25:18 -04:00
Minor changes.
This commit is contained in:
parent
041c172a55
commit
cdb0f9035d
2 changed files with 105 additions and 103 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue