mirror of
https://github.com/lrsjng/h5ai.git
synced 2025-08-08 23:06:46 +02:00
Minor changes.
This commit is contained in:
@@ -29,7 +29,7 @@ h5ai is provided under the terms of the [MIT License](http://github.com/lrsjng/h
|
|||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
|
||||||
### v0.18 - *2012-02-??*
|
### v0.18 - *2012-02-24*
|
||||||
|
|
||||||
* adds optional QRCode display
|
* adds optional QRCode display
|
||||||
* adds optional filtering for displayed files and folders
|
* 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 = {
|
var Base64 = {
|
||||||
|
|
||||||
// private property
|
// private property
|
||||||
@@ -68,10 +74,7 @@ decode : function (input) {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
output = Base64._utf8_decode(output);
|
return Base64._utf8_decode(output);
|
||||||
|
|
||||||
return output;
|
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
// private method for UTF-8 encoding
|
// private method for UTF-8 encoding
|
||||||
@@ -131,5 +134,4 @@ _utf8_decode : function (utftext) {
|
|||||||
|
|
||||||
return string;
|
return string;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user