Commit b0940832 authored by Alexey.Golubev's avatar Alexey.Golubev Committed by Alexander.Trofimov

Исправлены проблемы после минимизации.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@51220 954022d7-b5bf-4e40-9824-e11837661b57
parent 732cb5a9
...@@ -28,14 +28,14 @@ function(window, undefined) ...@@ -28,14 +28,14 @@ function(window, undefined)
if(undefined != obj && null != obj) if(undefined != obj && null != obj)
{ {
if(undefined != obj.licenseId && null != obj.licenseId) if(undefined != obj["licenseId"] && null != obj["licenseId"])
this.licenseId = obj.licenseId; this.licenseId = obj["licenseId"];
if(undefined != obj.trackingType && null != obj.trackingType) if(undefined != obj["trackingType"] && null != obj["trackingType"])
this.trackingType = obj.trackingType; this.trackingType = obj["trackingType"];
if(undefined != obj.trackingUrl && null != obj.trackingUrl) if(undefined != obj["trackingUrl"] && null != obj["trackingUrl"])
this.trackingUrl = obj.trackingUrl; this.trackingUrl = obj["trackingUrl"];
} }
if(c_TrackingType.TT_ACTIVE_CONNECTION == this.trackingType) if(c_TrackingType.TT_ACTIVE_CONNECTION == this.trackingType)
......
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