Commit d6cfd965 authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander.Trofimov

typeof undefined

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@59926 954022d7-b5bf-4e40-9824-e11837661b57
parent 01035b03
......@@ -3,7 +3,7 @@
function ZBase32Encoder()
{
this.EncodingTable = "ybndrfg8ejkmcpqxot1uwisza345h769";
this.DecodingTable = (undefined == typeof Uint8Array) ? new Array(128) : new Uint8Array(128);
this.DecodingTable = ("undefined" == typeof Uint8Array) ? new Array(128) : new Uint8Array(128);
var ii = 0;
for (ii = 0; ii < 128; ii++)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment