Commit c590a11f authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

lockCalbacks -> _lockCallbacks

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@66828 954022d7-b5bf-4e40-9824-e11837661b57
parent f8ac754f
......@@ -543,10 +543,10 @@
//Set reconnectTimeout
this._lockCallbacksErrorTimerId[idLockInArray] = window.setTimeout(function() {
if (t.lockCalbacks.hasOwnProperty(idLockInArray)) {
if (t._lockCallbacks.hasOwnProperty(idLockInArray)) {
//Not signaled already
t.lockCalbacks[idLockInArray]({error: 'Timed out'});
delete t.lockCalbacks[idLockInArray];
t._lockCallbacks[idLockInArray]({error: 'Timed out'});
delete t._lockCallbacks[idLockInArray];
delete t._lockCallbacksErrorTimerId[idLockInArray];
}
}, this.errorTimeOut);
......
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