mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-18 08:19:05 +01:00
function.js: Fix global variable B64keyStr declaration
This commit is contained in:
parent
0469d0723f
commit
78fefb6c8f
1 changed files with 5 additions and 5 deletions
|
@ -290,11 +290,11 @@ function generate_uuid() {
|
||||||
* Source : http://ntt.cc/2008/01/19/base64-encoder-decoder-with-javascript.html
|
* Source : http://ntt.cc/2008/01/19/base64-encoder-decoder-with-javascript.html
|
||||||
*/
|
*/
|
||||||
if ($type(atob) != 'function') {
|
if ($type(atob) != 'function') {
|
||||||
B64keyStr = "ABCDEFGHIJKLMNOP" +
|
var B64keyStr = "ABCDEFGHIJKLMNOP" +
|
||||||
"QRSTUVWXYZabcdef" +
|
"QRSTUVWXYZabcdef" +
|
||||||
"ghijklmnopqrstuv" +
|
"ghijklmnopqrstuv" +
|
||||||
"wxyz0123456789+/" +
|
"wxyz0123456789+/" +
|
||||||
"=";
|
"=";
|
||||||
|
|
||||||
function btoa(input) {
|
function btoa(input) {
|
||||||
input = escape(input);
|
input = escape(input);
|
||||||
|
|
Loading…
Reference in a new issue